I am currently getting user input with this line of code:
qty = int(input("How many of this item should we start with?"))
As one would expect, it throws an error if a value is entered that cannot be converted to INT.
On Error, I would like to prompt "Please enter a whole number" and return to the previous line requesting input. What is the most "Pythonic" way of achieving this?