demo_ref_set_isdisjoint.py:
x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "facebook"} z = x.isdisjoint(y) print(z)
C:\Users\My Name>python demo_set_isdisjoint.py
True