You have already completed these exercises!
Do you want to take them again?
You completed the PANDAS Cleaning Wrong Data Exercises from W3Schools.com
Share on:
What is a correct syntax for changing the 'Firstname' column in the first row to 'John'?
df.loc[0, 'Firstname'] = 'John'
df.loc[0]['Firstname'] = 'John'
df.loc[0, 'Firstname', 'John']