79616557

Date: 2025-05-11 14:08:24
Score: 1
Natty:
Report link

import turtle

def dibujar_flor(t, radio, angulo, lados):

for \_ in range(lados):

    t.circle(radio)

    t.left(angulo)

ventana = turtle.Screen()

ventana.bgcolor("white")

t = turtle.Turtle()

t.speed(0)

t.color("red")

dibujar_flor(t, 100, 170, 36)

turtle.done()

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Diego Huanca Quenta