问答详情
源自:8-5 Python 操作set的其他方法

必须写 if not flag: 吗?不写也能运行啊

s1 = set([1, 2, 3, 4, 6, 8, 10])

s2 = set([1, 2, 3, 4, 5, 6, 7, 8, 9])

flag = s1.isdisjoint(s2)

for item in s1:

    if item not in s2:

        continue

    print(item)


提问者:weixin_慕先生3349582 2023-02-21 18:26

个回答

  • 上善o若水
    2023-02-23 12:07:47

    严谨,如果不没有重合就不用执行下面的代码了