Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pandas select a row

#select the first row 
df.iloc[1]
#select the first row and return the value in column ['Biologie']
candidate_df.iloc[1]['Biologie']
Source by pandas.pydata.org #
 
PREVIOUS NEXT
Tagged: #pandas #select #row
ADD COMMENT
Topic
Name
1+1 =