from turtle import* t = Turtle() t.hideturtle() # Versteckt die Turtle und macht das Zeichnen schnell. # Hintergrund-, Füll- und Stiftfarbe Screen().bgcolor("lightblue") t.fillcolor("yellow") t.pencolor("darkred") t.width(4) # Sechs Ecken t.begin_fill() repeat 6: t.forward(40) t.right(120) t.forward(40) t.left(60) t.end_fill()