Skip to content

Commit

Permalink
Closes: google#36055
Browse files Browse the repository at this point in the history
Updated validations.py python script
  • Loading branch information
Astamur committed Nov 24, 2024
1 parent 33be82d commit 7812fb3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Course3/Lab4/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ def validate_user(username, minlen):
if not re.match('^[a-z0-9._]*$', username):
return False
# Usernames can't begin with a number
if username[0].isnumeric():
if not re.match('[a-zA-Z]', 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 7812fb3

Please sign in to comment.