Projekt8
import turtle
t = turtle.Turtle()
def pieciokat(a):
for i in range(a):
t.fd(a)
t.rt(72)
x = 40
if x > 10:
pieciokat(100)
Share your repls and programming experiences
import turtle
t = turtle.Turtle()
def pieciokat(a):
for i in range(a):
t.fd(a)
t.rt(72)
x = 40
if x > 10:
pieciokat(100)