Advertisements
Advertisements
Question
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}
Short Answer
Solution
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
Is there an error in this question or solution?