我需要知道如何修复此代码,以便当调用具有坐标列表的名为“redlist”的列表时,它会在调用移动函数时填充这些点。这是我到目前为止所拥有的:
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())