rosace.py

Created by numworks

Created on April 03, 2019

159 Bytes


from turtle import *
penup()
goto(0,26)
pendown()
speed(9)
def walk(i):
  circle(40)
  right(10)
  forward(4)
    
for i in range(40):
  walk(i)