📜  jupyter notebook 打印所有行数据框 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:29.515000             🧑  作者: Mango

代码示例1
#If we want to display all rows from data frame. We need to set this value 
#as NONE or more than total rows in the data frame as below.

pandas.set_option('display.max_rows', None)
df = pandas.read_csv("data.csv")
print(df)