我正在尝试编写一个小脚本来清理我的目录。事实上我有:
pattern = re.compile(format[i])
...
current_f.append(pattern.search(str(ls)))
我希望使用列表理解但是当我尝试时:
In [25]: [i for i in current_f.group(0)]
我明白了:
AttributeError: 'list' object has no attribute 'group'
那么如何使用group()
制作列表理解?还有另一种方法可以做我想要的吗?
答案 0 :(得分:7)
你想这样做吗?:
[f.group(0) for f in current_f]