tortue python
import turtle
a = turtle.Turtle()
a.color("orange")
a.begin_fill()
for i in range (1,11):
a.forward(36)
a.left(36)
a.end_fill()
a.right(90)
a.forward(30)
a.color("red")
a.write("Decagon")
a.forward(25)
Rick Astley