def dict_to_tuple():
x = {1: 'one', 2: 'two', 3: 'three'}
for item in x.items():
print(item)
dict_to_tuple()
def dict_to_tuple():
x = {1: 'one', 2: 'two', 3: 'three'}
for item in x.items():
print(item)
dict_to_tuple()