Contact: aviboots(AT)netvision.net.il
41,857 questions
54,547 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} '''