Untitled

Anonymous
python
10/18/2021 7:47 PM
504 B
13
Indexable
username = input("Username: ")
while len(username) < 8:
    print("Username cannot be shorter than eight characters.")
    username = input("Username again: ")

password = input("Password: ")
while len(password) < 8:
    print("Password cannot be shorter than eight characters.")
    password = input("Password again: ")
    
print("Username:", username, "Password:", password)
Editor is loading...