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

    x_coordinate_list = X_COORDINATES
    y_coordinate_list = Y_COORDINATES

    stripe_horizontally(x_coordinate_list, y_coordinate_list)
Пример #2
0
def horizontal_striper_2():
    """
    Gets x and y coordinates and sends them to the striping function

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

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

    stripe_horizontally(x_coordinate_list, y_coordinate_list)