Python - Exception Handling Fundamentals
Identify the error in this code snippet:
try:
x = int('hello')
except ZeroDivisionError:
print('Cannot divide by zero')