Пример #1
0
def vertical_striper_9():
    """
    Gets x and y coordinates and sends them to the striping function
    """

    x_coordinate_list = X_COORDINATES
    y_coordinate_list = Y_COORDINATES

    stripe_vertically_reverse(x_coordinate_list, y_coordinate_list)
def vertical_striper_12():
    """
    Gets x and y coordinates and sends them to the striping function

    This version reverses the order of the x and y coordinates.
    """

    x_coordinate_list = X_COORDINATES[::-1]
    y_coordinate_list = Y_COORDINATES[::-1]

    stripe_vertically_reverse(x_coordinate_list, y_coordinate_list)