I’m a beginner in python programming. I was doing a school project with pandas with csv file and when I print the table it shows not the result I wanted
This is the actual csv file i created csv file i created
I hope anyone can help me with this.
Advertisement
Answer
To conveniently print your table, use the methods for setting the output format – set_option ()
, for example, to remove the restriction on the number of columns –
pd.set_option('display.max_columns', None)
.
If you are using a development environment, then it is better to put a breakpoint on pass and run in debug mode. In pycharm, in the variable area, you can click on …View as DataFrame and a color readable table will appear.