我需要知道如何修复此代码,以便在调用名为“redlist”的列表时有一个坐标列表,它会在调用move函数时填充这些点。这就是我到目前为止所做的:
redlist=[]
def move():
penup()
if color()[0]=="red":
#coordinates of redlist should be filled here
def paint():
pendown()
if color()[0]=="red":
begin_fill
redlist.append(pos())
答案 0 :(得分:0)
我不知道您的意思是什么,但我称之为x
和y
redlist=[]
def move():
penup()
if color()[0]=="red":
x = 1 # replace this line
y = 2 # replace this line
redlist.append((x, y)) # you can access them by #x, y = redlist[-1]
#coordinates of redlist should be filled here
def paint():
pendown()
if color()[0]=="red":
begin_fill
redlist.append(pos())