This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('WELCOME TO PASSWORD ACCEPTOR') | |
x=input('ENTER YOUR NAME :') | |
while True: | |
if x.isalpha(): | |
break | |
x=input('ONLY LETTERS ALLOWED IN YOUR NAME :') | |
y=input('ENTER YOUR AGE :') | |
while True: | |
if y.isdecimal(): | |
break |