a = {}
print(type(a)) #we made a dictionary
a={1,2} #looks similar
print(type(a)) #BUT now we made a set
