这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 综合技术 » 基础知识 » Python视频教程之Python如何去除扩展名分享

共2条 1/1 1 跳转至

Python视频教程之Python如何去除扩展名分享

助工
2021-01-20 14:38:48     打赏

         Python去除扩展名是大多数Python开发工程师比较头疼的问题,不论是刚参加Python培训的新手还是已经参加工作的Python开发工程师朋友都需要了解Python如何去除扩展名,下面就跟扣丁学堂Python培训的小编一块来看一下吧。

扣丁学堂Python培训浅谈Python如何去除扩展名

获取不带扩展名的文件的名称:


import os
printos.path.splitext("path_to_file")[0]
 
from os.path import basename
# now you can call it directly with basename
print basename("/a/b/c.txt")
 
>>>base=os.path.basename('/root/dir/sub/file.ext')
>>> base
'file.ext'
>>> os.path.splitext(base)
('file', '.ext')
>>> os.path.splitext(base)[0]
'file'
>>> 
>>> printos.path.splitext(os.path.basename("hemanth.txt"))[0]
hemanth
>>> file ='/root/dir/sub.exten/file.data.1.2.dat'
>>> print('.').join(file.split('.')[:-1])
/root/dir/sub.exten/file.data.1.2
 
>>> s = 'c:\\temp\\akarmi.txt'
>>> print(os.path.splitext(s)[0])
c:\temp\akarmi
因此,我不需要驱动器号或者目录名,我使用:
 
>>>print(os.path.splitext(os.path.basename(s))[0])
akarmi
def getFileNameWithoutExtension(path):
 returnpath.split('\\').pop().split('/').pop().rsplit('.', 1)[0]
 
getFileNameWithoutExtension('/path/to/file-0.0.1.ext')
# => file-0.0.1
 
getFileNameWithoutExtension('\\path\\to\\file-0.0.1.ext')
# => file-0.0.1


以上就是Python在线学习小编为大家分享的Python如何去除扩展名的全部内容了,希望能给大家一个参考。想要了解更多内容的小伙伴可以登录扣丁学堂官网了解更多内容。扣丁学堂是专业的Python培训机构,不仅有专业的老师和与时俱进的课程体系,还有大量的Python在线视频教程供学员观看学习,想要学习Python的小伙伴快快行动吧。扣丁学堂python学习交流群:816572891。微信号:codingbb



工程师
2021-01-20 23:42:39     打赏
2楼

感谢分享


共2条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]