Jupyter notebooks

2 + 2
4
print("Cell 2")
Cell 2

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)