Odpowiedź:
import turtle
t = turtle.Turtle()
for x in range(4):
t.forward(100)
t.rt(90)
a = float(turtle.textinput("Podaj długość boku", "wpisz"))
txt = "Pole wynosi " + str(a*a)
txt2 = "Obwód wynosi " + str(4*a)
t.penup()
t.goto(0,-205)
t.write(txt)
t.goto(0,-220)
t.write(txt2)
turtle.exitonclick()
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
import turtle
t = turtle.Turtle()
for x in range(4):
t.forward(100)
t.rt(90)
a = float(turtle.textinput("Podaj długość boku", "wpisz"))
txt = "Pole wynosi " + str(a*a)
txt2 = "Obwód wynosi " + str(4*a)
t.penup()
t.goto(0,-205)
t.write(txt)
t.goto(0,-220)
t.write(txt2)
turtle.exitonclick()
Wyjaśnienie: