Lesson 0: Navigating Jupyter and the Slides

Press the spacebar, n, or the right arrow to advance slides. If you're on the notes or notebook, just scroll down. But you knew that.

About the Slides, Notes, and Notebook

The slides and notes are all generated from the Jupyter Notebook, so they have the same content (well, sort of; see the Notes or Notebook for why there's a caveat)!

Some slides, like this one have more than one part, called "Sub-Slides". If you're using the arrow keys, you'll have to press Up/Down to view these sub-slides when those arrows light up. If you're using n or the spacebar, it'll advance as you expect.

Would you look at that! It's a sub-slide!

To view the other keyboard shortcuts for the slides, press ?.

In [1]:
print("Hello, World!")
Hello, World!

A wild code block appears...

What's that? A wild code block has appeared! These are actual interactive code blocks. The code you see has actually run, and the output is exactly as Python has generated, save for some formatting beautifications for more advanced things like tables.

To run the code in a notebook, you can...

  • Select the cell, then press Run in the toolbar
  • Select the cell, then press Cell > Run Cells
  • Press Cell then Run All, Run All Above, or Run All Below

That's all folks!

Have fun learning!