17 lines
152 B
Markdown
17 lines
152 B
Markdown
|
# Generators
|
||
|
|
||
|
## Turtle
|
||
|
|
||
|
```
|
||
|
# turtle-example.py
|
||
|
from turtle import *
|
||
|
|
||
|
pencolor((255,0,0))
|
||
|
|
||
|
for i in range(4):
|
||
|
forward(100)
|
||
|
right(90)
|
||
|
|
||
|
done()
|
||
|
#EOF
|
||
|
```
|