6. What is the output produced by above cod
d1 = {5: [6,7,8], "a" : (1,2,3)}
print(d1.keys())
print(d1.values())
7. What will be the output?
dict ={}
dict['dict']= 1
dict['b']=[2,3,4]
print(dict)
Answers
Answered by
1
Answer:
question 6 answer 5:6,7,8. a1,2,3
question 7 answer dict=1234
Similar questions