โ Back to Exceptions
Question 655
Key Not Found In Dictionary
Key Not Found In Dictionary
A dictionary mapsAlice -> 30andBob -> 25. Read a name (a key) and print its value withages[key]. If the key is missing, the indexer throws aKeyNotFoundException; catch it and printNot found. Use top-level statements. InputAliceprints: 30 InputCarolprints: Not found
Expected Output:
30
Topics:
Exceptions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.