Modifications

Sauter à la navigation Sauter à la recherche
248 octets ajoutés ,  19 mars 2020 à 21:48
Ligne 163 : Ligne 163 :     
[[Fichier:Python-Turtle-Exemple-10.png]]
 
[[Fichier:Python-Turtle-Exemple-10.png]]
 +
 +
== Dessiner une étoile spiralée ==
 +
 +
<syntaxhighlight lang="python">
 +
import turtle
 +
 +
t = turtle.Turtle()
 +
 +
for i in range(20):
 +
    t.forward(i * 10)
 +
    t.right(144)
 +
</syntaxhighlight>
 +
 +
Résultat attendu:
 +
 +
[[Fichier:Python-Turtle-Exemple-11.png]]
    
== SpiroGraphe simple ==   
 
== SpiroGraphe simple ==   
29 879

modifications

Menu de navigation