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)
// print("About to sleep for 10 seconds.")
// time.sleep(10.0)
// print("Slept for 10 seconds.")
After Change
with Notebook() as print:
print("Hello world.")
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)