Python - Exception Handling Fundamentals
Consider this code:
What will be the output?
try:
data = {'a': 1}
print(data['b'])
except Exception as e:
print('Error:', e)
finally:
print('Done')What will be the output?
