Hi all,
I have a simple question. My requirement is that I want Jupyter to basically output all of the interactive output to the user.
This has to be done without using print statements and not just the last recent result obtained.
How can this be done?
Check out the following example for better clarity:
x=3
x
x+1
The output I want for this particular sequence of code is as follows:
3
4
How can I go about doing this? All help appreciated!