我写的代码非常简单,只是为了测试定义函数。每当我尝试在 shell 中对其进行测试时,它都会给我同样的错误,
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
hello(n)
NameError: name 'hello' is not defined
这是代码
def hello(n):
print("Hello")
我写的代码非常简单,只是为了测试定义函数。每当我尝试在 shell 中对其进行测试时,它都会给我同样的错误,
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
hello(n)
NameError: name 'hello' is not defined
这是代码
def hello(n):
print("Hello")