# The intersection() function can be used to create a new set containing the shared # values from one set with another mySet = {1, 2, 3, 4} mySet2 = {3, 4, 5, 6} mySet3 = mySet.intersection(mySet2) print(mySet3) # Output: # {3, 4}