Computer Science, asked by bisht3269, 3 months ago

write a statement in python to declare a dictionary whose keys are: 1, 2 'Name' and values are : (11, 22, 33) , (5 ,10 ) and 'Guido van Rossum ' respectively.​

Answers

Answered by nkcthereaper
0

Answer:

dic={1:(11,22,33),2:(5,10),'Name':'Guido van Rossum'}

print('Doctionary=',dic)

Similar questions