Contact: aviboots(AT)netvision.net.il
39,844 questions
51,765 answers
573 users
dic = {'key1':34, 'key2':89, 'key3':12, 'key4':48, 'key5':50} keys = ['key1', 'key2', 'key3', 'key4'] value = 0 dic = {key: value for key in keys} print(dic) ''' run: {'key1': 0, 'key2': 0, 'key3': 0, 'key4': 0} '''