from turtle import* t = Turtle() t.hideturtle() Screen().bgcolor("yellow") t.color("red") # Statt ganz vieler Zacken: Linien durchziehen... t.begin_fill() repeat 36: t.forward(100) t.right(130) # 36*130 ist ein Vielfaches von 360 Grad. t.end_fill()