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