You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

spiral.py 76B

3 months ago
12345678
  1. from turtle import *
  2. speed(0)
  3. for i in range(150):
  4. circle(i, 20)
  5. done()