Python - Advanced Exception Handling
What will this code print?
try:
raise RuntimeError('Something went wrong')
except RuntimeError as e:
print(e)try:
raise RuntimeError('Something went wrong')
except RuntimeError as e:
print(e)15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions