'When i write to csv why doesnt my text delimter function work in pandas?

my original dataframe has an issue where one of the several columns has

df
name
Kristin (co-owner, William)

This is not being injested into ssis in the same column

When i set the delimiter as

df.to_csv(out_path+ '/Combined.csv',sep=",",quotechar='"',index=False)

nothing changes. my desired output for the column should look like in my final csv-

"Kristin (co-owner, William)"


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source