create your 97 design code in python using turtle module import module #coding #python #import #skp

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

import turtle as t
t.bgcolor('black')
t.tracer(90)
col = ['red', 'yellow']
for x in range(1000):
t.fillcolor(col[x%2])
t.begin_fill()
t.goto(0, 0)
t.circle(-x, 180)
t.right(1)
t.backward(x)
t.end_fill()
t.hideturtle()

NiKiTa-
welcome to shbcf.ru