d = {'x': 10, 'y': 20, 'z': 30}   
for dict_key, dict_value in d.items():  
    print(dict_key,'->',dict_value)

 

相关文章: