Log in | |
Track your progress |
Progress: Problem 1 of 10
Email Address: | Register |
Reset Password |
||
Password: | Log in |
What code will draw a circle at the specified x and y locations?
def draw_circle(screen, x, y): pygame.draw.ellipse(screen, WHITE, [0, 0, 25 + x, 25 + y])
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, [x, y, 25, 25])
Check Answer
Next