collarblind
collarblind

Reputation: 4739

Pycharm longer output

I have a pandas df and the output is:

8        IF YOU HAVE ANY PROBLEMS WITH TODAY'S FIL...

how do I make it longer, I tried

desired_width = 1000
pd.set_option('display.width', desired_width)

but it still gives the same output.

Thanks

Upvotes: 1

Views: 81

Answers (1)

Alex
Alex

Reputation: 826

You need to use :

pd.set_option('display.max_colwidth', desired_width)

here is the link to all the options available.

Upvotes: 1

Related Questions