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)
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?