Computer Science, asked by ankit054321, 21 days ago

What is the output of the following python script?

import pandas as pd



data1 = {'Name':['A', 'B', 'C'],

'Age':[1, 2, 3],

'Country':['USA','Canada','Bangalore']}



df1 = pd.DataFrame(data1)

df1.loc[2,'Name']

Answers

Answered by lamsongeashvini
1

'age' [1,2,3]

(i am not sure...)

Similar questions