主要介绍了python获取文件扩展名的方法,涉及Python针对文件路径的相关操作技巧。具体实现方法如下:
1
2
3
4
|
import os.path def file_extension(path): return os.path.splitext(path)[ 1 ] print file_extension( ‘C:\py\wxPython.gif‘ ) |
输出结果为:
.gif
标签:import container function file keyword 文件路径 ber syn 技巧
主要介绍了python获取文件扩展名的方法,涉及Python针对文件路径的相关操作技巧。具体实现方法如下:
1
2
3
4
|
import os.path def file_extension(path): return os.path.splitext(path)[ 1 ] print file_extension( ‘C:\py\wxPython.gif‘ ) |
输出结果为:
.gif
标签:import container function file keyword 文件路径 ber syn 技巧
原文地址:https://www.cnblogs.com/hixiaowei/p/8438930.html