'vscode: How to see entire cell output in Jupyter Notebook?

Context: I'm running a Jupyter notebook in vscode. I have a dataframe with 100 columns and want to print all columns.

Problem: notebooks in vscode has a built-in limit on the maximum output length. I've already changed the notebook "text line limit" to 100, and nothing changed. I also restarted vscode, and rerun the notebook.

How to see the entire output?

enter image description here

enter image description here



Solution 1:[1]

runs_df.columns.tolist() solves the problem

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Andrei Margeloiu