Log in | |
Track your progress |
Progress: Problem 1 of 10
Email Address: | Register |
Reset Password |
||
Password: | Log in |
¿Cuál de estos códigos dibujará un círculo en las coordenadas x e y especificadas?
def draw_circle(pantalla, x, y): pygame.draw.ellipse(pantalla, BLANCO, [0, 0, 25 + x, 25 + y])
def draw_circle(pantalla, x, y): pygame.draw.ellipse(pantalla, BLANCO, [x, y, 25 + x, 25 + y])
def draw_circle(pantalla, x, y): pygame.draw.ellipse(pantalla, BLANCO, [x, y, 25, 25])
Check Answer
Next