I have a table (dataframe) where multiple string columns contain curly brackets and apostrophes, which I am trying to replace with a blank space:
I started with the genre1
column but I keep getting a key error.
This is the code I am trying to remove curly bracket:
JavaScript
x
2
1
movies['genre1'].replace(to_replace=["}"],value="",inplace=True)
2
Advertisement
Answer
This will work!
JavaScript
1
2
1
movies['genre1'] = movies['genre1'].str.replace("}","")
2
What you are doing is will look exactly for ‘}’, and wherever the value of the cell will be exactly equal to }, it will replace. So, you need to use the attr str.