the-honk/python/calculators/_helpers/intInput.py

9 lines
183 B
Python
Raw Normal View History

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