def thisisfun(x,y,z):
x=2
y=3
z=4
print('AHHHHA')
thisisfun(333,"annoy",2142125)
如果是最后一行,那么在我点击Execute Current File
它之后实际上会打印AHHHHA
但是当我尝试在 Python Shell 中使用 thisisfun(333,"annoy",2142125) (没有最后一行)时,它说name 'thisisfun' is not defined
我不知道发生了什么我的 WingIDE...:( 帮助..