Jupyter notebooks

This theme should look ok with the myst-nb extension.

Code with output

a = "This is "
b = "Python"
print(f"{a}{b}")
This is Python

Multiple outputs

for i in range(3):
    print(f"Line {i}")
Line 0
Line 1
Line 2

Expression result

import sys
sys.version
'3.14.3 (main, Mar 24 2026, 14:52:30) [Clang 22.1.1 ]'

Error output

1 / 0
---------------------------------------------------------------------------
ZeroDivisionError                         Traceback (most recent call last)
Cell In[4], line 1
----> 1 1 / 0

ZeroDivisionError: division by zero