1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
"""
Example
=================================

One-line description
"""

import matplotlib.pyplot as plt
import numpy as np

x = 'hello_world'

########################################
# This is rendered text, and will break apart a notebook cell

y = 'foo'

print(x)

plt.plot(np.random.rand(100), np.random.rand(100), 'b.')
plt.show()