Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
dic = {'python':34, 'java':12, 'c':19, 'c++':18, 'c#':35} dic.update(java = 100) print(dic) ''' run: {'python': 34, 'java': 100, 'c': 19, 'c++': 18, 'c#': 35} '''