Home > Software engineering >  How do i make a 5 letter username a requirement?
How do i make a 5 letter username a requirement?

Time:06-15

Summary: i wanted to make it so 5 letters are required, but since i am a big dummy i don't know how to do that, i don't know what to try so i tried nothing, well anyways heres the code:

username=input("input username= ")
to_deny = ["!", "?", " ", "/", ",", ".", "[", "]", "(", ")",]
if any([char in username for char in to_deny]):
    print("denied characters: ?, !, space(s), /, dots, [], ()")
    quit()
else:
    print("hello",username,"!")

CodePudding user response:

username=input("input username= ")
to_deny = "!? /,.[]()"
if any(char in username for char in to_deny):
    print("denied characters: ?, !, space(s), /, dots, [], ()")
    quit()
elif len(username) != 5:
    print("username must be at least 5 characters")
    quit()
else:
    print(f"hello {username}!")

CodePudding user response:

if any([char in username for char in to_deny]):
    print("denied characters: ?, !, space(s), /, dots, [], ()")
    quit()
elif len(username) != 5:
    print("username must be 5 characters")
    quit()
else:
    print("hello",username,"!")
  • Related