xxxxxxxxxx
# rectangle colour
rect_colour = (RGB VALUE)
# define the x, y, width & height for the rectangle
x_position = 30
y_position = 30
rect_width = 60
rect_height = 60
# draw the rectangle
pygame.draw.rect(screen, rect_colour, pygame.Rect(rect_width, rect_height))
xxxxxxxxxx
pygame.Rect(top, left, width, height) # all values are integers in pixels
xxxxxxxxxx
pygame.draw.rect(surface, colour, Rect)
#Rect would be a .Rect() variable.