christmas4.py

Created by schraf

Created on December 04, 2022

187 Bytes


from turtle import *
from math import cos

pencolor(30,140,0)
k=.4
penup()
for a in range(172):
 goto(k*a*cos(21.6*a),75-a)
 pendown()
 if a>158: k=.1
penup()
goto(0,85)