Q. What is the output of the following code?
Code:
d = {"alex":30, "bob":35}
d["alex"]
β
Correct Answer: (A)
30
d = {"alex":30, "bob":35}
d["alex"]
You must be Logged in to update hint/solution