Skip to content
Project: Building Core Sign-Up Functions to Help Validate New Users
You recently joined a small startup as a junior developer. The product managers have come to you for help improving new user sign-ups for the company's flagship mobile app.
There are lots of invalid and incomplete sign-up attempts crashing the app. Before creating new accounts, you suggest standardizing validation checks by writing reusable Python functions to validate names, emails, passwords, etc. The managers love this idea and task you with coding core validation functions for improving sign-ups. It's your job to write these custom functions to check all user inputs to ensure they meet minimum criteria before account creation to reduce crashes.
# Re-run this cell
# Preloaded data for validating email domain.
top_level_domains = [
".org",
".net",
".edu",
".ac",
".gov",
".com",
".io"
]
def validate_name(name):
#Check if input is a string
if not isinstance(name, str):
return False
if len(name.strip()) <= 2:
return False
return True
def validate_email(email):
if '@' not in email:
return False
if not isinstance(email, str):
return False
for domain in top_level_domains:
if email.endswith(domain):
return True
return False
print(validate_name("Joeven"))
print(validate_email("[email protected]"))
print(validate_email("joe_123.com"))