我在终端中输入了以下命令:br@wind:~$ pythonPython 2.7.3 (default, Aug 1 2012, 05:16:07) [GCC 4.6.3] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> from gasp import *>>> begin_graphics()>>> Closed.br@wind:~$ touch gasp.pybr@wind:~$ echo "from gasp import *" >> gasp.pybr@wind:~$ echo "begin_graphics()" >> gasp.pybr@wind:~$ cat gasp.py from gasp import *begin_graphics()br@wind:~$ python gasp.pyTraceback (most recent call last): File "gasp.py", line 1, in <module> from gasp import * File "/home/br/gasp.py", line 2, in <module> begin_graphics()NameError: name 'begin_graphics' is not defined为什么GASP仅在我直接在python shell中键入代码时运行,而在执行python脚本时却无法运行?
添加回答
举报
0/150
提交
取消