Importing and Parsing
import pandas as pd
df = pd.read_csv('file_name.csv')
df.head()
Check the column's name you want to change, and then:
df.rename(columns={'old_name':'new_name'}, inplace=True)
For further actions, you may consider blocking this person and/or reporting abuse
Mike Young -
Mike Young -
Vikas76 -
Dumebi Okolo -
Top comments (0)