Quiz: Using Controllers

Expand login sectionLog in
Track your progress

Progress: Problem 1 of 10

What code will draw a circle at the specified x and y locations?

def draw_circle(screen, x, y):
    pygame.draw.ellipse(screen, WHITE, [x, y, 25, 25])
def draw_circle(screen,x,y):
    pygame.draw.ellipse(screen, WHITE, [x, y, 25 + x, 25 + y])
def draw_circle(screen, x, y):
    pygame.draw.ellipse(screen, WHITE, [0, 0, 25 + x, 25 + y])
Check Answer