Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
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
7 changes: 7 additions & 0 deletions Course3/Lab4/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

def validate_user(username, minlen):
"""Checks if the received username matches the required conditions."""
char_check = re.search(r"^([a-zA-Z])", username)
if char_check is None:
return False
if type(username) != str:
raise TypeError("username must be a string")
if minlen < 1:
Expand All @@ -22,3 +25,7 @@ def validate_user(username, minlen):



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