I have a name like this :
"DOE D, John"
and a name like this:
"DOE, Jane"
in the form of a string
I need to convert it to this:
"John D Doe"
and
"Jane Doe"
I have this so far:
name = "DOE, John"
name_list = []
comma = ","
for letter in name:
name_list.append(letter)
index_comma = name_list.index(",")
last_name = name_list[:index_comma]
first_name = name_list[index_comma:]
print('The primary list is: ',name_list)
print("First half of list is ",first_name)
print("Second half of list is ",last_name)
new_name_list = first_name + last_name
for letter in new_name_list:
if letter == comma:
new_name_list.pop()
print(''.join(new_name_list))
but it returns this:
, JohnDO
How do I go about doing this in a clean and Pythonic way?
You can use the following method:
.split(",")
splits the left and right sides of the comma" ".join
re-combines the components using spaces as separators.split()
splits all wordsreversed
reverses the word list" ".join
re-combines the reversed word list.title()
capitalizes the first letter of each word