Skip to content

Instantly share code, notes, and snippets.

View dumbbellcode's full-sized avatar
😀
learning every day

Sudheer Tripathi dumbbellcode

😀
learning every day
View GitHub Profile
@dumbbellcode
dumbbellcode / Password Acceptor.py
Created June 23, 2018 14:09
Funcode3(Password Acceptor)
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