Question
Asked By – mbh86
I want Jupyter to print all the interactive output without resorting to print, not only the last result. How to do it?
Example :
a=3
a
a+1
I would like to display
3
4
Now we will see solution for issue: How to display full output in Jupyter, not only last result?
Answer
Thanks to Thomas, here is the solution I was looking for:
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
This question is answered By – mbh86
This answer is collected from stackoverflow and reviewed by FixPython community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0