Computer Science, asked by banerjeesubhojit92, 1 month ago

c. Below are the two lists convert it into the dictionary
keys = ['Ten', 'Twenty', 'Thirty')
values = (10, 20, 30)​

Answers

Answered by madhalaimuthucharlas
2

Answer:

keys = ['Ten', 'Twenty', 'Thirty')

values = [10, 20, 30]

dictionary = dict(zip(keys, values))

print (dictionary)

Similar questions