How to create a dictionary from a list of keys with the same value in Python

1 Answer

0 votes
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}

'''

 



answered Dec 17, 2024 by avibootz
...