myturtle11.py

Created by vef03715

Created on February 01, 2021

260 Bytes


from math import *
from turtle import *

def square():
  for i in range(4):
    forward(65)
    right(90)

def myturtle11():
  speed(10)
  for j in range(72):
    square()
    right(5)
  hideturtle()
  penup()
  goto(-150,-100)
  write("END")