how to replace values of column in dataframe code example

Example 1: replace column values pandas

df['column'] = df['column'].str.replace(',','-')
df

Example 2: how to replace values in column pandas

# this will replace "Boston Celtics" with "Omega Warrior"
df.replace(to_replace ="Boston Celtics",
                 value ="Omega Warrior")

Example 3: how to replace values in column pandas

# importing pandas as pd
import pandas as pd
  
# Making data frame from the csv file
df = pd.read_csv("nba.csv")
  
# this will replace "Boston Celtics" and "Texas" with "Omega Warrior"
df.replace(to_replace =["Boston Celtics", "Texas"], 
                            value ="Omega Warrior")