I'm trying to print a csv file to terminal using pandas. The issue is that it only prints two of four columns like this:

I'm trying to print a csv file to terminal using pandas. The issue is that it only prints two of four columns like this:
0  index             ...                                    time
1 1 ... 2019-02-20 11:38:56.800711
2 2 ... 2019-02-20 11:38:56.800711
3 3 ... 2019-02-20 11:38:56.800711



This is my code:
 
df = pd.read_csv('path/data.csv')
print(df)

How can I print the missing column 2 and 3?
You already invited:

hans - Full stack

Upvotes from:

What is the data in the missing columns?

If you wanna answer this question please Login or Register