How to create dictionary from a list of tuples in Python

1 Answer

0 votes
language = [('python', 4), ('php', 7), ('java', 18), ('c++', 12)]

dic = dict(language)


print(dic)


'''
run:

{'python': 4, 'java': 18, 'php': 7, 'c++': 12}
  
'''

 



answered Aug 29, 2018 by avibootz
...