Run
# Empty set set_1 = {} # Set with single item set_2 = {54} # Set with multiple items set_3 = {32, 41, 29, 85} print(set_1) print(set_2) print(set_3)
Output