Advertisements
Advertisements
प्रश्न
Write the Python statement for the following task using built-in functions/method only:
To remove the item whose key is "NISHA''
from a dictionary named Students
.
For example, if the dictionary Students
contains {"ANITA": 90, "NISHA":76, "ASHA":92}
, then after removal the dictionary should contain {"ANITA":90, "ASHA":92}
लघु उत्तरीय
उत्तर
del Students["NISHA"]
message.count("is")
Explanation: A key:value pair can be extracted from a dictionary using the del function and the dictionary's key.
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?