I have a column in my dataframe like this:
range
(2,30)
(50,290)
(400,1000)
...
and I want to replace the ',' comma with '-' dash. I am currently using this method but nothing is changed.
org_info_exc['range'].replace(',','-',inplace=True)
Can anybody help?