Advertisement
Tokty

Corona

May 14th, 2022
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. from turtle import *
  2. speed(10)
  3. color('green')
  4. bgcolor('white')
  5. b = 200
  6. while b > 0:
  7.     left(b)
  8.     forward(b * 3)
  9.     b = b - 1
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement