Черепашка

Anonymous
python
12/21/2021 5:40 AM
468 B
15
Indexable
import turtle

t = turtle.Turtle()

t.left(90)
t.forward(50)
t.left(90)
t.forward(50)
t.right(135)
t.forward(80)
t.left(135)
t.forward(30)
t.right(135)
t.forward(60)

t.right(90)
t.forward(60)

t.right(135)
t.forward(30)
t.left(135)
t.forward(80)
t.right(135)
t.forward(50)
t.left(90)
t.forward(50)
t.right(90)
t.forward(40)
Editor is loading...