I am reading bunch of files as a data frame. Some of the columns have values stored at $1 ,$0 etc . I want to remove all the dollar signs (columns name and number having $ values will vary from file to file). What will be the most efficient way to do this Bellow is an example of a sample df
I was thinking of using iterrows. for row in df.iterrows():
Then may be check each value in row and see if it starts with $ then change the trim $ and store it back in the data frame.
Not sure how to proceed with that approach . Any help is apricated