Files
python/elso/elso.py

18 lines
265 B
Python
Raw Normal View History

2021-11-25 14:06:28 +01:00
import turtle
def negyzet_rajzolas(t, h):
for i in range(4):
t.forward(h)
t.left(90)
#ablak
a = turtle.Screen()
a.bgcolor("white")
a.title("Negyzet")
#rajzeszkoz
toll = turtle.Turtle()
negyzet_rajzolas(toll, 50)
a.mainloop()