Animation in python

 Animation in python

👇Code Here👇


from turtle import *
speed(100)
bgcolor("#88E8F2")
for i in range(250):
     color("#D96690")
     circle(i)
     lt(5)
done()

Comments