0
Python , using py
Can someone explain how can ı turn this ; print('Lütfen çapı yazınız Orhan Bey') çap=input('x') r=(int(çap))/2 pi=3.14 alan=pi*(r*r) print('Alanınız=',alan) input() (dont care the words it is just a program finding area from r) to a program ı can use without closing and opening the py
4 Réponses
+ 2
Then I think you want something like this (it doesn't work on Sololearn):
print('Lütfen çapı yazınız Orhan Bey')
while True: # repeat forever
çap=input('x')
if int(cap) < 0:
break # stop when negative num
r=(int(çap))/2
pi=3.14
alan=pi*(r*r)
print('Alanınız=',alan)
+ 1
Do you want to repeat input so you can repeat the calculation? Or do you want the program to do something different after the second input?
0
I just want to repeat input so it can repeat same calculation
0
Thank you so much bro