How to convert list to dictionary with default value in Python

1 Answer

0 votes
lst = ['python', 'c', 'c++', 'java'] 

defaultValue = 3

dic = {lst[i]: defaultValue for i in range(0, len(lst), 1)} 

print(dic)
  


     
 
'''
run:
 
{'python': 3, 'c': 3, 'c++': 3, 'java': 3}

'''

 



answered Jan 11, 2021 by avibootz
...