Info
+ There are a few code-syntax differences between running Python in a Jupyter notebook and a script: +print([THING YOU WANT TO PRINT])
, whereas in Jupyter, you can simply have the last line of a code cell be [THING YOU WANT TO PRINT]
.plt.show()
to display your plot, but plots are shown automatically in Jupyter.