Python - Exception Handling Fundamentals
Given this code, what will be printed?
try:
d = {'a': 1}
print(d['b'])
except KeyError:
print('KeyError caught')
except Exception:
print('General exception caught')