Published
- 1 min read
corona shape in python
The solution for this is noted below
corona shape in python
Solution
from turtle import *
color('green')
bgcolor('black')
speed(11)
hideturtle()
b = 0
while b < 200:
right(b)
forward(b * 3)
b = b + 1
Try other methods by searching on the site. That is if this doesn’t work