python-by-example-150-chall.../challenges60-68/challenge-067.py
2019-07-18 16:31:50 +03:00

11 lines
171 B
Python

import turtle
import random
draw = turtle.Turtle()
draw.shape('turtle')
for j in range(10):
for i in range(8):
draw.forward(50)
draw.right(45)
draw.right(36)