the-honk/languages/python/calculators/_helpers/floatInput.py

9 lines
186 B
Python
Raw Normal View History

2021-08-26 01:42:17 +00:00
# helper method to easily take in float inputs
def floatInput(text):
while True:
try:
2022-03-31 15:19:23 +00:00
x = float(input(text))
2021-08-26 01:42:17 +00:00
return x
except ValueError:
2022-05-08 02:13:33 +00:00
print('You must input a float!\n')