我正在尝试导入海龟模块,但如果我使用任何方法,它总会给我一个错误。
turtle.forward(10).
我已经检查了我的模块名称mydesign.py
。
错误:
追踪(最近一次呼叫最后一次):
文件“”,第1行,
NameError:未定义名称'turtle'
答案 0 :(得分:0)
好的。所以,首先,做基本的事情。确保您已导入 turtle
。它的作用是允许您访问所有 turtle
方法(您可以使用的函数)。
import turtle
接下来,添加您已有的代码。
turtle.forward(10)
最后,如果您想保持窗口打开,请添加 turtle.mainloop()
。 turtle.mainloop()
的作用是运行代码,然后保持窗口打开。
这是最终的代码。有注释(用 #
标记,因此它们不会作为命令运行)来解释它。
import turtle # Gives you access to all the turtle functions
turtle.forward(10) # Move the turtle 10 across. This isn't very much so you may want to try using 100
turtle.mainloop() # Keep the window open until you press the close button at the top (so you can see your marvelous work!).
如果这有帮助,请务必点击 tick
以批准并投票!