I have a dataframe column that has the following values:
EMPLOYEE_NAME
---------------------
ROBERT
HENRY
THOMSON AND THOMSON
The dataframe would be added to a dictionary to create a new issue in JIRA.
new_issue = {new_issue[employee_name] = {'value':df_new_positives.EMPLOYEE_NAME.iloc[i].title()}
Calling the title() function is converting first letter in each word to start with a capital letter. In this case, I would like to convert the names to Robert, Henry, Thomson and Thomson while making update to JIRA.
Expected names in JIRA: Robert Henry Thomson and Thomson
Please advise how to approach this change.