Issue
I am trying to remove commas from this "Client_name" dataframe, but I'm not sure how to? I'm reading you can use regex, but I don't understand how.
I basically need to remove all of the commas from this data frame. so I just have plain text to work with
Solution
Try str.replace()
, as follows:
data['Client_name'] = data['Client_name'].str.replace(',', '')
Answered By - SeaBean
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.