Advertisements
Advertisements
प्रश्न
Write the output of the code given below:
my_dict = {"name": "Aman", "age": 26}
my_dict['age'] = 27
my_dict['address'] = "Delhi"
print(my_dict.items())एक पंक्ति में उत्तर
Advertisements
उत्तर
dict_items([('name', 'Aman'), ('age', 27), ('address', 'Delhi')])shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
