This notebook tests if outputs render in Jupyter Book 2.
# Simple calculation
x = 6 * 7
x
# HTML output test
from IPython.display import HTML
HTML("<table><tr><th>Name</th><th>Value</th></tr><tr><td>A</td><td>1</td></tr><tr><td>B</td><td>2</td></tr></table>")
# DataFrame test
import pandas as pd
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
df