2020-11-11 22:14:38 +01:00
..
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 17:31:08 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00
2020-11-11 22:14:38 +01:00

Generators

Turtle

# turtle-example.py
from turtle import *

pencolor((255,0,0))

for i in range(4):
	forward(100)
	right(90)

done()
#EOF