Ok need to understand why my code is not working. At the moment it's getting stuck in a infinite loop of asking the user for a pin after a wrong pin is inputted.
I believe I'm screwing up the while statement somehow.
def inputValidator():
userInput = requestInteger("Please input a PIN between 1 - 1000")
while 1 > userInput > 1000 :
requestInteger("Your PIN is not within 1 - 1000, please try again")
print("Thanks! your new PIN is " + str(userInput))
thanks for the help guys!