# The isdisjoint() function can be used to determine whether or not two sets have # an intersection or not mySet = {1, 2, 3} mySet2 = {4, 5, 6} print(mySet.isdisjoint(mySet2)) # Output: # True