Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How do i make a 5 letter username a requirement?

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,"!")

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

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}!")

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading