Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated validations.py python script #35836

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Course3/Lab4/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ def validate_user(username, minlen):
raise TypeError("username must be a string")
if minlen < 1:
raise ValueError("minlen must be at least 1")


if not username[0].isalpha():
return False
# Usernames can't be shorter than minlen
if len(username) < minlen:
return False
Expand All @@ -20,5 +22,10 @@ def validate_user(username, minlen):
return False
return True

print(validate_user("blue.kale", 3)) # True

print(validate_user(".blue.kale", 3)) # Currently True, should be False

print(validate_user("red_quinoa", 4)) # True

print(validate_user("_red_quinoa", 4)) # Currently True, should be False