码迷,mamicode.com
首页 > 编程语言 > 详细

python获取文件扩展名的方法

时间:2019-01-07 11:24:37      阅读:196      评论:0      收藏:0      [点我收藏+]

标签: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

python获取文件扩展名的方法

标签:wxpython   python   nbsp   display   路径   print   扩展名   text   file   

原文地址:https://www.cnblogs.com/sea-stream/p/10231908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!