x = "hello"
try:
assert x == "goodbye"
except AssertionError:
print("assert 语句出错")
except:
print("发生了其他错误")