Make CORONA from TURTLE . #python

Аватар автора
Программистская Студия
good as you wish ! code to make corona model in python import turtle t=turtle.Turtle() s=turtle.Screen() s.bgcolor("black") t.pencolor("pink") a=0 b=0 t.speed(0) t.penup() t.goto(0,220) t.pendown() while (True): t.forward(a) t.right(b) a+=1.5 b+=.5 if b==310: break t.hideturtle() turtle.done() THANKYOU!! you can make it now #creative

0/0


0/0

0/0

0/0