вот простая звездная прога
Код: Выделить всё
import turtle
star = turtle.Turtle()
for i in range(50):
star.forward(50)
star.right(144)
turtle.done()
Подробнее здесь: https://stackoverflow.com/questions/366 ... gled-lines
Код: Выделить всё
import turtle
star = turtle.Turtle()
for i in range(50):
star.forward(50)
star.right(144)
turtle.done()