get row data from panda code example
Example 1: pandas get row from column value
df.loc[df['column_name'] == some_value]
Example 2: how to get a row from a dataframe in python
df.iloc[[index]]
df.loc[df['column_name'] == some_value]
df.iloc[[index]]