以下为错误示例:
hello() def hello(): print("Hello world!") 结果 >>> NameError: name 'hello' is not defined # hello没有被定义 >>>
2