我的问题有点基础,但由于我是python的新手(从GIS交叉),请耐心等待。
我有一个python列表,它基于用户插入的文件 -
例如:inputlist =["c:\\files\\foobar.shp","c:\\files\\snafu.shp"]
如何仅将文件名(没有路径或扩展名)放入新列表中?
(期望的输出:["foobar","snafu"]
)
谢谢。
您可以使用python的列表推导:
new_list = [ splitext(basename(i))[0] for i in inputlist ]
[os.path.basename(p).rsplit(".", 1)[0] for p in inputlist]
import os.path
extLessBasename = lambda fn: os.path.splitext(os.path.basename(fn))[0]
fileNames = map(extLessBasename, inputlist)
这个解决方案也对你有帮助。
import os
inputlist =["/home/anupam/PycharmProjects/DataStructures/LogicalProgram/classvsstatic.py",
"/home/anupam/PycharmProjects/DataStructures/LogicalProgram/decorators.py"]
filename_list = []
for i in inputlist:
path_list =i.split('/')
filename_with_extension = path_list[-1]
filename_without_extension = os.path.splitext(filename_with_extension)[0]
filename_list.append(filename_without_extension)
print(filename_list)
根据windows文件路径。您可以在代码中使用'//'进行小的更改。