标签:wxpython python nbsp display 路径 print 扩展名 text file
主要介绍了python获取文件扩展名的方法,涉及Python针对文件路径的相关操作技巧
import os.path def file_extension(path): return os.path.splitext(path)[1] print file_extension(‘C:\py\wxPython.gif‘)
输出结果为:
.gif
标签:wxpython python nbsp display 路径 print 扩展名 text file
原文地址:https://www.cnblogs.com/sea-stream/p/10231908.html