tortue_en_escargot.py

Created by elodie-gamot

Created on June 10, 2022

140 Bytes

Spirale carrée. Introduction aux variables.


from math import *
from turtle import *

color('red')
a=10

for i in range (13):
  forward(a)
  left(90)
  a=a+10