how can i know if the value surrounding to another value in pandas 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"