selecting a row in pandas code example

Example 1: how to get a row from a dataframe in python

df.iloc[[index]]

Example 2: select specific rows from dataframe in python

select_color = df.loc[df['Color'] == 'Green']

Example 3: select rows from dataframe pandas

from pandas import DataFrame

boxes = {'Color': ['Green','Green','Green','Blue','Blue','Red','Red','Red'],
         'Shape': ['Rectangle','Rectangle','Square','Rectangle','Square','Square','Square','Rectangle'],
         'Price': [10,15,5,5,10,15,15,5]
        }

df = DataFrame(boxes, columns= ['Color','Shape','Price'])

select_color = df.loc[df['Color'] == 'Green']
print (select_color)

Example 4: retrieve row by index pandas

rowData = dfObj.loc[ 'b' , : ]

Example 5: iloc and loc

iloc - default indexes (system generated)
loc - table indexes or we manually given indexes