Answers for "python update column based on row"

0

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"
Posted by: Guest on July-07-2020

Code answers related to "python update column based on row"

Python Answers by Framework

Browse Popular Code Answers by Language