I am testing pandas. I am downloading a csv from the internet and need to print out the entire csv. When I attempt to print, I get the first 5 lines and the last 5 lines, but not anything else in the middle. How can I print it all out?
#!/usr/local/bin/python3
import pandas as pd
california_housing_dataframe = pd.read_csv("https://download.mlcc.google.com/mledu-datasets/california_housing_train.csv", sep=",")
#california_housing_dataframe.describe()
print(california_housing_dataframe)