Files
python-by-example-150-chall…/challenges60-68/challenge-064.py

8 lines
116 B
Python
Raw Normal View History

2019-07-18 16:31:50 +03:00
import turtle
draw = turtle.Turtle()
draw.shape('turtle')
for i in range(5):
draw.forward(100)
draw.right(144)