Skip to content

Commit

Permalink
Closes: google#1
Browse files Browse the repository at this point in the history
Updated validations.py python script.
Fixed the behavior of validate_user function in validations.py.
  • Loading branch information
Mohamed-Elmanzalawi committed Dec 6, 2023
1 parent 33be82d commit b9ac666
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Course3/Lab4/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ def validate_user(username, minlen):
# Usernames can't begin with a number
if username[0].isnumeric():
return False
if username[0] == '.' or username[0] == '_':
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

0 comments on commit b9ac666

Please sign in to comment.