79512727

Date: 2025-03-16 14:52:42
Score: 1.5
Natty:
Report link

NOT WORKING!!!!!!!!

import turtle

def red_star(t, side):
    t.fillcolor('red')
    t.pencolor('black')  # to highlight the lines
    t.pendown()
    t.width(3)
    t.begin_fill()
    for i in range(5):
        t.fd(side)
        t.left(72)
        t.forward(side)
        t.right(144)
    t.end_fill()

t = turtle.Turtle()
s = t.screen
s.delay(0)
t.hideturtle()
t.penup()
red_star(t, 50)
s.exitonclick()
s.mainloop()
Reasons:
  • Has code block (-0.5):
  • No latin characters (0.5):
  • Filler text (0.5): !!!!!!!!
  • Low reputation (1):
Posted by: Max_xHerbie