gpt4 book ai didi

python - 使用通配符在列表中查找字符串

转载 作者:太空狗 更新时间:2023-10-29 21:25:48 25 4
gpt4 key购买 nike

我正在使用通配符在列表中查找一些文件名。

from datetime import date
dt = str("RT" + date.today().strftime('%d%m'))
print dt # RT0701

基本上我需要找到这个模式 dt + "*.txt" :

RT0701*.txt

在此列表中:

l = ['RT07010534.txt', 'RT07010533.txt', 'RT02010534.txt']

我如何使用 for 循环做到这一点?

最佳答案

您可以使用 fnmatch.filter()为此:

import fnmatch
l = ['RT07010534.txt', 'RT07010533.txt', 'RT02010534.txt']
pattern = 'RT0701*.txt'
matching = fnmatch.filter(l, pattern)
print(matching)

输出:

['RT07010534.txt', 'RT07010533.txt']

关于python - 使用通配符在列表中查找字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34660530/

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