pythagoras_opgave_07.py

Created by numworks-nl

Created on May 03, 2023

242 Bytes


# Moderne kunst
import turtle

i=1
Doorgaan = True
while Doorgaan:
  try:
    turtle.forward(1+i/3)
    turtle.right(30+i/6)
    i += 1
    if i == 500:
      Doorgaan = False
  except turtle.Terminator:
    break