Skip to content

Commit

Permalink
Closes google#36338
Browse files Browse the repository at this point in the history
Update validations.py python script.
Fixed the behavior of validate-user function in validations.py

Fixes google#36338
  • Loading branch information
Tuba101001 committed Jan 18, 2025
1 parent 33be82d commit 69ff8d1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Course3/Lab4/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,22 @@ def validate_user(username, minlen):
# Usernames can only use letters, numbers, dots and underscores
if not re.match('^[a-z0-9._]*$', username):
return False
# Username can only start with a letter
if re.match('^[0-9._]', username):
return False
# Usernames can't begin with a number
if username[0].isnumeric():
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 69ff8d1

Please sign in to comment.