dict1={'s':1,'a':2}
dict1.keys()
once time {'a','s'} and other time {'s','a'} Why ?
set1={'a','b'}
set2={'b','c'}
print(set1 | set2)
once time {'a','b','c'}, second time: {'c','b','a'} and etc. Why ? How can I print in deterministic order ?