-1
我想在python中創建一個非常簡單的程序,並試圖嘗試這一點,但我按f5運行,然後程序說shape()是未定義的。這裏是我的代碼:程序不會在Python龜中運行
import turtle
shape("turtle")
i=0
while i<360:
circle(100)
right(1)
i+=1
這裏是我的日誌,當我按下F5:
Traceback (most recent call last):
File "C:\Users\coold\Documents\Coding\PythonStuff\turtle.py", line 1, in <module>
import turtle
File "C:\Users\coold\Documents\Coding\PythonStuff\turtle.py", line 3, in <module>
shape("turtle")
NameError: name 'shape' is not defined
>>>
是的。 'shape'確實沒有定義*。你可能意思是'turtle.shape(「turtle」)' –
或者,你可能打算使用'from turtle import *',儘管這很麻煩。 – Junuxx