Nauč se Python > Kurzy > Beginners course PyLadies > Final project I. > Coding game: Pong

Coding game: Pong – Řešení [1]

def render():
    ...
    # bats - we will create list of bats coordinates and for each pair of coordinates
    # in this list we will draw the bat
    for x, y in [(0, bat_coordinates[0]), (WIDTH, bat_coordinates[1])] :
        draw_rectangle(
            x - BAT_THICKNESS,
            y - BAT_LENGTH // 2,
            x + BAT_THICKNESS,
            y + BAT_LENGTH // 2)
        )

Toto je stránka lekce z kurzu, který probíhá nebo proběhl naživo s instruktorem.