how to change the form of dataframe based on line to work in python dataframe code example
Example: how to change entry in a row based on another columns entry python
import pandas
df = pandas.read_csv("test.csv")
df.loc[df.ID == 103, 'FirstName'] = "Matt"
df.loc[df.ID == 103, 'LastName'] = "Jones"