我正在尝试将下面的列表写入 Python 中的 txt 文件。但是,我也试图从列表中删除具有“xxx”的那些。最好使用某种 if 函数。就像如果一个 url 有 'xxx' 从列表中删除。关于如何解决这个问题的任何想法?TTF = ('abc.com/648','xxx.com/246','def.com/566','ghi.com/624','xxx.com/123')
2 回答
智慧大石
TA贡献1946条经验 获得超3个赞
TTF = ('abc.com/648','xxx.com/246','def.com/566','ghi.com/624','xxx.com/123')
filtered = tuple(filter(lambda e: "xxx" not in e, TTF))
print(filtered)
类似于Green Cloak Guy,但filter改为使用。
MM们
TA贡献1886条经验 获得超2个赞
简单的过滤列表理解。字符串支持用于子字符串匹配,因此您可以通过执行in来检查字符串是否包含.xxxxxx in string
结果:
TTF_without_xxx = tuple(s for s in TTF if 'xxx' not in s)
# ('abc.com/648', 'def.com/566', 'ghi.com/624')
添加回答
举报
0/150
提交
取消