pygame drawing lines code example
Example 1: pygame draw line
pygame.draw.line(SURFACE, COLOR, START_POS, END_POS, WIDTH)
Example 2: draw a line pygame
pygame.draw.line(surface, color, start_pos, end_pos, width)
Example 3: pygame how to draw a rectangle
pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))