我想繪製3種隨機顏色的圓圈。但是在這個代碼,用於繪製圓,輸出無顏色:Python Turtle Draw隨機彩色圓圈
import turtle
window=turtle.Screen()
tess= turtle. Turtle()
import random
def getColor():
color=random.randint(1,3)
if color==1:
color="red"
elif color==2:
color=="yellow"
elif color==3:
color=="blue"
return color
print (random.randint(1,3))
def drawFace (x,y):
tess.penup()
tess.goto(x+5,y+10)
tess.circle(10)
tess.goto(x+15,y+10)
tess.circle(10)
tess.pendown()
您沒有使用'getColor()'。至少不在此代碼中。另外,您在兩次不同的randint()調用中生成兩個不同的數字。 – Lafexlos