Skip to content

Instantly share code, notes, and snippets.

@magusafr
Created June 27, 2018 06:47
Show Gist options
  • Save magusafr/bc4deaddddca447a73e41554b694cded to your computer and use it in GitHub Desktop.
Save magusafr/bc4deaddddca447a73e41554b694cded to your computer and use it in GitHub Desktop.
Input password
while True:
print('Enter your age:')
age = input()
if age.isdecimal():
break
print('Please enter a number for your age.')
while True:
print('Select a new password (letters and numbers only):')
password = input()
if password.isalnum():
break
print('Passwords can only have letters and numbers.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment