Kamus Python Tambahkan pasangan nilai kunci

dict = {'key1':'value_one', 'key2':'value_two'}  
dict['key3'] = 'value_three'
Learned This Today