Ganti nilai kolom panda
df['column'] = df['column'].str.replace(',','-')
df
Better Badger
df['column'] = df['column'].str.replace(',','-')
df
df['coloum'] = df['coloum'].replace(['value_1','valu_2'],'new_value')
# this will replace "Boston Celtics" with "Omega Warrior"
df.replace(to_replace ="Boston Celtics",
value ="Omega Warrior")
df.loc[df['column'] == 'column_value', 'column'] = 'new_column_value'
df.replace([0, 1, 2, 3], [4, 3, 2, 1])