x = "hello"
try:
assert x == "goodbye"
except AssertionError:
print("Error in assert statement")
except:
print("Something else went wrong")