In part 4 we will create a scoreboard placed at the top of the pong table
In the while loop add
# Draw the scoreboard to screen
board = pygame.Surface([window[0], 40])
board.fill((60,60,60))
screen.blit(board, (0,0))
# Add a font
font = pygame.font.Font(None, 24)...