how to take index first and last in python in one way
[some_list[0], some_list[-1]]
how to take index first and last in python in one way
[some_list[0], some_list[-1]]
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