I have a Python Pandas DataFrame like this:
Name  
Jim, Mr. Jones
Sara, Miss. Baker
Leila, Mrs. Jacob
Ramu, Master. Kuttan 
I would like to extract only name title from Name column and copy it into a new column named Title. Output DataFrame looks like this:
Name                    Title
Jim, Mr. Jones          Mr
Sara, Miss. Baker       Miss
Leila, Mrs. Jacob       Mrs
Ramu, Master. Kuttan    Master
I am trying to find a solution with regex but failed to find a proper result.
 
     
    