first and last name generator python
sudo pip install names
first and last name generator python
sudo pip install names
method get first last name python
def get_first_last_name(s):
INVALID_NAME_PARTS = ["mr", "ms", "mrs",
"dr", "jr", "sir"]
parts = s.lower().replace(".","").strip().split()
parts = [p for p in parts if p not in INVALID_NAME_PARTS]
if len(parts) == 0:
raise ValueError("Name %s is formatted wrong" %s)
first,last = parts[0], parts[-1]
first = first[0].upper() + first[1:]
last = last[0].upper() + last[1:]
return first, last
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us