Advertisements
Advertisements
Question
Consider the following dictionary stateCapital:
stateCapital = {"AndhraPradesh":"Hyderabad",
"Bihar":"Patna","Maharashtra":"Mumbai",
"Rajasthan":"Jaipur"}
Find the output of the following statement:
print("Maharashtra" in stateCapital)
One Line Answer
Solution
True: 'in' is a membership operator which returns true if a key is present in the dictionary.
shaalaa.com
Tuple Operations
Is there an error in this question or solution?