python:我如何让乌龟从列表中执行某些操作?

时间:2017-09-12 04:05:15

标签: python list turtle-graphics

data_sets = [
    ['O', ['Sheet C', 'Location 2', 'Upright'],
          ['Sheet B', 'Location 3', 'Upright'],
          ['Sheet D', 'Location 1', 'Upright'],
          ['Sheet A', 'Location 4', 'Upright']]
    ['X', ['Sheet A', 'Location 1', 'Upright'],
          ['Sheet B', 'Location 2', 'Upright'],
          ['Sheet C', 'Location 3', 'Upright'],
          ['Sheet D', 'Location 4', 'Upright']],
]

我需要能够将正确的工作表粘贴到正确的位置。我当前的代码能够转到正确的位置,但它只能粘贴sheet_a_upright()而不是我想要的工作表,例如它可以使用此列表,但随后它会粘贴一个额外的工作表:

data_sets = [
    ['O', ['Sheet A', 'Location 1', 'Upright']]
]

代码可以粘贴到正确的位置,但它不会粘贴正确的工作表。如果我粘贴我在问题开头放置的前两个列表中的一个,它只会在所有4个位置粘贴表单A. 我的代码如下:

def goto_loc(data_sets):
    for location in data_sets:
        if len(location)>1 and 'Location 1' in location[1]:
            goto(-300, 0)
            sheet()
        elif len(location)>1 and 'Location 2' in location[1]:
            goto(-100, 0)
            sheet()
        elif len(location)>1 and 'Location 3' in location[1]:
            goto(100, 0)
            sheet()
        elif len(location)>1 and 'Location 4' in location[1]:
            goto(300, 0)
            sheet()

#function for which sheet should be drawn from data_sets
def sheet():
    for style in data_sets:
        if len(style)>1 and 'Sheet A' in style[1]:
            sheet_a_upright()
            return True
        elif len(style)>1 and 'Sheet B' in style[1]:
            sheet_b_upright()
            return True
        elif len(style)>1 and 'Sheet C' in style[1]:
            sheet_c_upright()
            return True
        elif len(style)>1 and 'Sheet D' in style[1]:
            sheet_d_upright()
            return True

#define sheet outline and fill
def outline():
    pencolor('black')
    penup()
    forward(100)
    pendown()
    fillcolor('green')
    begin_fill()
    left(90)
    fd(250)
    left(90)
    fd(200)
    left(90)
    fd(500)
    left(90)
    fd(200)
    left(90)
    fd(250)
    right(90)
    penup()
    end_fill()

#function for sheet A in upright position
def sheet_a_upright():
    outline()
def sheet_b_upright():
    outline()
def sheet_c_upright():
    outline()
def sheet_c_upright():
    outline()


# Paste the sheets onto the billboard as per the provided data set
def paste_up(data_sets):
    for each in data_sets:
        goto_loc(data_sets)
        if sheet():
            return
#the number i put into data_sets[] depends on which list i want to paste
paste_up(data_sets[0])

如何让我的代码将正确的工作表粘贴到正确的位置,然后在最后停止粘贴?(我没有包含工作表A代码的代码,因为它太长而且不重要,大纲功能只是在位置周围绘制边框)

1 个答案:

答案 0 :(得分:0)

首先,您似乎输入错误 - sheet_c_upright()定义了两次。

其次,所有工作表函数调用outline() - 这是故意的吗?如果没有,这可能就是为什么在所有位置绘制相同的工作表。