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())
एक पंक्ति में उत्तर
उत्तर
dict_items([('name', 'Aman'), ('age', 27), ('address', 'Delhi')])
shaalaa.com
Key Concepts in Database Management System (DBMS)
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?