How to get value from row for particular entity python

Question:

Fetch the age by specific name.

df = pd.DataFrame(data) 

enter image description here

I wants to get 'Age' for df['Name'] == 'Krish'

Asked By: Shriganesh Patil

||

Answers:

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]
Answered By: Stackpy
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.