#shapes import pygame, sys, random from pygame.locals import * #Display screen and shape size and where its displayed pygame.init() DISPLAYWINDOWSIZE = pygame.display.set_mode((300,300)) pygame.display.set_caption("Test") DISPLAYWINDOWSIZE.fill((255,255,255)) pygame.draw.circle(DISPLAYWINDOWSIZE, (0,0,255), center=(150,150), radius=100, width=0) #pygame.draw.polygon(surface, color, pointlist, width) #pygame.draw.line(surface, color, start_point, end_point, width) #pygame.draw.lines(surface, color, closed, pointlist, width) #pygame.draw.circle(surface, color, center_point, radius, width) #pygame.draw.ellipse(surface, color, bounding_rectangle, width) #pygame.draw.rect(surface, color, rectangle_tuple, width) while True : for event in pygame.event.get(): if event.type == QUIT: pygame.quit() sys.exit() pygame.display.update()