Python-获得字符串之间的区别

Python-获得字符串之间的区别,第1张

Python-获得字符串之间的区别
a = 'testing this is working n testing this is working 1 n'b = 'testing this is working n testing this is working 1 n testing this is working 2'splitA = set(a.split("n"))splitB = set(b.split("n"))diff = splitB.difference(splitA)diff = ", ".join(diff)  # ' testing this is working 2, more things if there were...'

本质上讲,使每个字符串由一组行组成,并采用集合差-即B中所有不在A中的东西。然后取该结果并将其全部连接到一个字符串中。

编辑:这是说@ShreyasG说的一种糊涂方式-[如果x不在y中,则x用于x] …



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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存