Python Tip: Validating user input as number (Integer)

In most of your Python programs you will want to interact with the end-user by asking questions and retrieving user inputs. To do so you can use the input() function: e.g. username=input("What is your username?") Sometimes you will need to … Continue reading Python Tip: Validating user input as number (Integer)