print rows pandas code example
Example 1: pandas dataframe show one row
df.iloc[0,:]
Example 2: pandas show all dataframe
with pd.option_context('display.max_rows', None, 'display.max_columns', None): # more options can be specified also
print(df)