我正在尝试编写一个小脚本来清理我的目录.事实上我有:
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()进行列表理解呢?还有另一种方法可以做我想要的吗?
最佳答案 你想这样做吗?:
[f.group(0) for f in current_f]