在if语句中重写分配的pythonic方法

在if语句中重写分配的pythonic方法,第1张

在if语句重写分配的pythonic方法

怎么样

for r in [regex.match(s) for s in str]:    if r:        print r.groups()

或更实用

for r in filter(None, map(regex.match, str)):    print r.groups()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4888643.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-11

发表评论

登录后才能评论

评论列表(0条)

保存