- The basics
- Cells (MD vs Python)
- Demo plots
- What is a kernel? Changing kernel.
- Platforms - Jupyter notebook vs lab, colab, github codespaces, VS code
- Exporting / converting / sharing
The test is formatted based on special characters
Heading 1
Heading 2
Heading 3 …
Asterisk for italics Two for bold Three for strong
~tilde for strikethrough~
from markdown import markdown
markdown("**Boldtest**")
'<p><strong>Boldtest</strong></p>'
Heading 1
Heading 2
Heading 3 …
Asterisk for italics Two for bold Three for strong
~tilde for strikethrough~
Maths detour
import matplotlib.pyplot as plt
import numpy as np
xs = np.linspace(-10,10,1000)
ys = np.sin(xs)
plt.plot(xs, ys)