python 如何获取文件名后缀

方法:

使用 os.path.splitext(file)[0] 可获得文件名 。

使用 os.path.splitext(file)[-1] 可获得以 . 开头的文件后缀名 。

import os
file = "Hello.py"

获取前缀(文件名称)

assert os.path.splitext(file)[0] == "Hello"

获取后缀(文件类型)

assert os.path.splitext(file)[-1] == ".py"
assert os.path.splitext(file)[-1][1:] == "py"

云海天教程网,免费的在线学习python平台,欢迎关注!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python 如何获取文件名后缀