#hide
! [ -e /content ] && pip install -Uqq fastbook
import fastbook
fastbook.setup_book()Appendix: Jupyter Notebook 101
from fastbook import *Introduction
1+1Writing
3/2Modes
Other Important Considerations
Markdown Formatting
Italics, Bold, Strikethrough, Inline, Blockquotes and Links
Headings
Lists
Code Capabilities
# Import necessary libraries
from fastai.vision.all import *
import matplotlib.pyplot as pltfrom PIL import Imagea = 1
b = a + 1
c = b + a + 1
d = c + b + a + 1
a, b, c ,dplt.plot([a,b,c,d])
plt.show()Image.open(image_cat())Running the App Locally
Creating a Notebook
Shortcuts and Tricks
Command Mode Shortcuts
Cell Tricks
Line Magics
%timeit [i+1 for i in range(1000)]