myturtle2.py

Created by vef03715

Created on February 01, 2021

366 Bytes


from math import *
from turtle import *
def myturtle2():

  reset()
  speed(10)
  color("green")
  for i in range(0,360,30):
    circle(50)
    left(30)
  hideturtle()
  penup()

  reset()
  speed(10)
  color("red")
  for i in range(0,360,30):
    circle(50)
    left(30)
    forward(10)
  hideturtle()
  penup()

  goto(-150,-100)
  write("END")