Tuple python et dictionnaire
my_new_dic = { 'England': 435, 'France': 12, 'Egypt': 31 }
new_tup = [(key, value) for key, value in my_new_dic.items()]
print(new_tup)
tergum sursum