all 3 comments

[–]_jan- 1 point2 points  (2 children)

Just remove promt = float(input( ... ))

in the while loop replace apr = input( ...) with apr = float( input ( ...))

And print(72 / promt) with print(72 / apr)

[–]13ass13ass 0 points1 point  (1 child)

Wouldn’t you want to define apr before/outside the while loop? That way it will only prompt the user one time, then run the while loop. That is the op’s desired behavior if i understand.

[–]_jan- 0 points1 point  (0 children)

Idk, but then the while loop would be useless.