Demo Notebook¶
This is the demonstration notebook to show you how to run Python code.
Markdown cells support a variety of formatting features such as bold and italics. Also:
- bulleted
- lists
and
- numbered
- lists
We can also show mathmatical expressions, like $y = mx + b$.
In [1]:
"Hello, world"
Out[1]:
'Hello, world'
In [2]:
5
Out[2]:
5
In [3]:
print("Hello, world")
Hello, world
In [ ]: