CJCoding With Joseph

Key Not Found In Dictionary

A dictionary maps Alice -> 30 and Bob -> 25. Read a name (a key) and print its value with ages[key]. If the key is missing, the indexer throws a KeyNotFoundException; catch it and print Not found. Use top-level statements.

Input Alice prints: 30
Input Carol prints: Not found

Expected Output:

30
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
Alice\n
This input is automatically fed to your program's stdin
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.