6. Suppose (1) D1 = {1: ‘One’,2:’Two’, 3: ‘Three’, 4:’Four’, 5:’Five’} D2 = {6: ‘Six’,7: ‘Seven’) Write the output for the following: >>>D1.items() >>>D2.values()
Answers
Answered by
0
Answer:
returns:
dict_items([(1, 'One’), (2, 'Two'), (3, 'Three'), (4, 'Four'), (5, 'Five')])
returns :
dict_values(['Six', 'Seven'])
Similar questions
Hindi,
2 months ago
Computer Science,
2 months ago
Social Sciences,
5 months ago
Math,
5 months ago
Physics,
11 months ago
Hindi,
11 months ago