Ubuntu – How my book and my python have different values on this "set" variable?
so, in my book state that: dict1 = {'satu': 100, 'dua': 100, 'tiga': 100, 'empat':200} set1 = set(dict1) set1 {'tiga', 'dua' 'empat' 'satu'} and while i try it, the code says: dict1 = {'satu': 100, 'dua': 100, 'tiga': 100, 'empat':200}…