You can find information about Pygame Draw commands here
In many of the following questions it is better to open the pygame basic template write and test the code.
pygame.draw.rect(screen, GREEN, [ 10 , 10 , 100 , 100 ], 5 ) |
pygame.draw.ellipse(screen, RED, [ 20 , 20 , 250 , 100 ], 2 ) |
pygame.draw.polygon(screen, GREEN, [[ 50 , 100 ],[ 0 , 200 ],[ 200 , 200 ],[ 100 , 50 ]], 5 ) |