how to append first name and alst name to full name and just chaing while they are not none python code example

Example: 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