How are you

Hi there. This is bold and this is italics.

Try something here

estudio-bloom-oj9-77qT3i0-unsplash.jpg

And hello some Python code that actually executes:

(FYI: Magic doesn't work on these blocks)

import numpy as np

# Fix the seed so subsequent runs result in more stable results
np.random.seed(42)

rows = st.slider("Number of rowst", 1, 500, 160)
data = np.random.randn(rows, 5)

st.write(data)

...and variables can span code blocks:

st.line_chart(data)
x = st.slider("x", 1, 100)
st.write(x)

help('modules')

It seems like columns do not work here in notionlit 😕 💔

st.write(x) # can we see a variable from another block?

Untitled