Files
python/18 oldal/teknos3.py

16 lines
234 B
Python
Raw Permalink Normal View History

2021-11-26 10:13:26 +01:00
import turtle
#ablak
a = turtle.Screen()
a.bgcolor("white")
a.title("Negyzet")
#rajzeszkoz
Eszti = turtle.Turtle()
Eszti.forward(40)
for i in range(18):
turtle.forward(45)
turtle.right(360 / 18)
a.mainloop()