penrose2.py

Created by schraf

Created on August 12, 2022

191 Bytes


from turtle import *
from math import sqrt

hideturtle()
for _ in range(4):
  for v in ((1,90),(5,90),(5,45),(sqrt(2),135),(5,270),(4,180),(3,0)):
    fd(v[0]*16)
    rt(v[1])