开发者社区> 问答> 正文

Python打印两个字符串中不相同的部分

我尝试做这样的事情:

a = "i am from Israel"
b = "i live in Switzerland"

输出:

"live", "am", "from", "Israel", "in", "Switzerland"

因为这些部分不会同时出现在两个字符串中。我怎样才能做到这一点?

问题来源:stackoverflow

展开
收起
is大龙 2020-03-23 18:51:27 810 0
2 条回答
写回答
取消 提交回答
  • 代码改变世界,我们改变代码

    充份利用set集合的交并补集

    2020-03-24 10:12:59
    赞同 展开评论 打赏
  • 使用set()和对称性差异:

    a = "i am from Israel"
    b = "i live in Switzerland"
    c = set(a.split()) ^ set(b.split())
    print(c)
    

    输出:

    {'Israel', 'Switzerland', 'am', 'from', 'in', 'live'}
    

    回答来源:stackoverflow

    2020-03-23 18:51:33
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载