Fetch the age by specific name.
df = pd.DataFrame(data)
I wants to get 'Age'
for df['Name'] == 'Krish'
CodePudding user response:
df.loc[df['Name']=='Krish','Age'].values[0]
If you wish to get answer in int/str/float convert it to list
and then show the first value by [0]
df.loc[df['Name']=='Krish','Age'].tolist()[0]