Python - Exception Handling Fundamentals
What is wrong with this code?
try:
x = int('5')
except ValueError:
print('Value error')
else:
print('No error')