Advertisement
pacho_the_python

Untitled

Apr 3rd, 2022
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. from turtle import *
  2.  
  3. speed(11)
  4.  
  5. for i in range(100):
  6.     circle(5 + 2 * i)
  7.     left(10)
  8.  
  9. done()
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement