import sys
print('hello world', flush=True)
for i in range(3):
print(i, flush=True)
print('output to stderr', file=sys.stderr, flush=True)
print('some more stdout text', flush=True)
hello world 0 1 2 output to stderr some more stdout text
$ e^{ \pm i\theta } = \cos \theta \pm i\sin \theta + \beta $
It really is!
this is a syntax error
[0;36m File [0;32m"<ipython-input-2-6c5185427360>"[0;36m, line [0;32m1[0m [0;31m this is a syntax error[0m [0m ^[0m [0;31mSyntaxError[0m[0;31m:[0m invalid syntax
from IPython.display import Image
Image('./jupyter.png')
from IPython.display import Latex
Latex('''The mass-energy equivalence is described by the famous equation
$$E=mc^2$$
discovered in 1905 by Albert Einstein.
In natural units ($c$ = 1), the formula expresses the identity
\\begin{equation}
E=m
\\end{equation}''')