x = "hello"
# 如果条件返回 True,则不会发生任何事:
assert x == "hello"
# 如果条件返回 False,则引发 AssertionError:
assert x == "goodbye"