Program Coronavirus di Python
from turtle import *
color('green')
bgcolor('black')
speed(11)
hideturtle() #just for aesthetic
b = 0
while b<200:
right(b)
forward(b * 3)
b +=1
done()
Pr.Gaultier