Python Dictionary Dodaj parę wartości kluczowej

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