gpt4 book ai didi

python - 从列表中删除定义的字符串 - python

转载 作者:太空宇宙 更新时间:2023-11-03 13:14:03 26 4
gpt4 key购买 nike

foo = '/input/directory/'
faa = ['/input/directory/file1.txt', '/input/directory/file2.txt']

我需要从列表 (faa) 和文件扩展名中删除目录名称(即 foo),只留下

bar = ['file1', 'file2']

最佳答案

使用map

bar = map(lambda x: '.'.join(x.replace(foo, '').split('.')[:-1]), faa)

关于python - 从列表中删除定义的字符串 - python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35336152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com