from streamlet import Notebook, Chart
with Notebook() as write:
write.header("My awesome program", level=3)
write("hello my little world. I love you, too!! :)")
my_array = np.random.randn(100, 100)
write("my array", my_array)
After Change
print("Starting the loop")
for i in range(100):
print("i", i)
print("Finished the loop")
an_array = np.random.randn(200, 200)
print(an_array)