1window = pygame.display.set_mode(300, 300)
2colour = (0,0,255) #green
3circle_x_&_y = (150, 50)
4circle_radius = 12
5border_width = 0 #0 = filled circle
6
7pygame.draw.circle(window, colour, circle_x_&_y, circle_radius, border_width)
1gameDisplay = pygame.display.set_mode((width,height))
2bright_blue =(0,255,255)
3
4# draw rectangle
5pygame.draw.rect(gameDisplay, bright_blue ,(611,473,100,50))