Answers for "print only 2 rows in dataframe"

8

show more rows pandas

import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
Posted by: Guest on March-30-2020
0

dataframe of one row

In [395]: df = pd.DataFrame([[1,1.23,'Hello']], columns=list('ABC'))

In [396]: df
Out[396]:
   A     B      C
0  1  1.23  Hello
Posted by: Guest on April-01-2020

Code answers related to "print only 2 rows in dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language