python去除扩展名
来源:动视网
责编:小OO
时间:2020-11-27 14:21:58
python去除扩展名
获取不带扩展名的文件的名称。,我不需要驱动器号或者目录名。import osprintos.path.splitext(";path_to_file";)[0] from os.path import basename# now you can call it directly with basenameprint basename(";/a/b/c.txt";) >;>;>;base=os.path.basename(';/root/dir/sub/file.ext';)>;>;>;base';file.ext';>;>;>;os.path.splitext(base)(';>。
导读获取不带扩展名的文件的名称。,我不需要驱动器号或者目录名。import osprintos.path.splitext(";path_to_file";)[0] from os.path import basename# now you can call it directly with basenameprint basename(";/a/b/c.txt";) >;>;>;base=os.path.basename(';/root/dir/sub/file.ext';)>;>;>;base';file.ext';>;>;>;os.path.splitext(base)(';>。

下面为大家分享一篇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: empakarmi
因此,我不需要驱动器号或者目录名,我使用:
>>>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去除扩展名
获取不带扩展名的文件的名称。,我不需要驱动器号或者目录名。import osprintos.path.splitext(";path_to_file";)[0] from os.path import basename# now you can call it directly with basenameprint basename(";/a/b/c.txt";) >;>;>;base=os.path.basename(';/root/dir/sub/file.ext';)>;>;>;base';file.ext';>;>;>;os.path.splitext(base)(';>。