如何在PYTHON中仅提取列表“成员”的一部分?

问题描述 投票:1回答:4

我的问题有点基础,但由于我是python的新手(从GIS交叉),请耐心等待。

我有一个python列表,它基于用户插入的文件 -

例如:inputlist =["c:\\files\\foobar.shp","c:\\files\\snafu.shp"]

如何仅将文件名(没有路径或扩展名)放入新列表中?

(期望的输出:["foobar","snafu"]

谢谢。

python list gis
4个回答
4
投票

您可以使用python的列表推导:

new_list = [ splitext(basename(i))[0] for i in inputlist ]

2
投票
[os.path.basename(p).rsplit(".", 1)[0] for p in inputlist]

1
投票
import os.path
extLessBasename = lambda fn: os.path.splitext(os.path.basename(fn))[0]
fileNames = map(extLessBasename, inputlist)

0
投票

这个解决方案也对你有帮助。

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文件路径。您可以在代码中使用'//'进行小的更改。

© www.soinside.com 2019 - 2024. All rights reserved.