python-malbuch/FuerUhuhoehe
Franziska Naja 602e21972d Add new file
2023-01-15 09:44:41 +00:00

26 lines
580 B
Plaintext

from turtle import *
speed(100)
pensize(10)
shape("turtle")
penup()
goto(0,250)
pendown()
schrittanzahl1 = 12
for i in range(schrittanzahl1):
# print("i:", i, "i/schr.", i/schrittanzahl)
pencolor(i/schrittanzahl1, 0, 0)
forward(200)
right(30)
schrittanzahl2 = 8
for j in range(schrittanzahl2):
pencolor(i/schrittanzahl1, j/schrittanzahl1, 0)
forward(100)
left(45)
for k in range(schrittanzahl2):
pencolor(i/schrittanzahl1, j/schrittanzahl1, k/schrittanzahl1)
forward(100)
left(90)
done()