demo_ref_set_isdisjoint2.py:
x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "apple"} z = x.isdisjoint(y) print(z)
C:\Users\My Name>python demo_set_isdisjoint2.py
False