turtle_prof_tuto002.py

Created by niz-moussatat

Created on June 29, 2022

198 Bytes


# Type your text here
from turtle import *            # charge le module turtle
n = 5
l = 60
penup()
goto(0,0)
pendown()   
for i in range(5) :
  forward(l)
  left(360//n)