import numpy as np
import matplotlib.pyplot as plt
First section
Numpy Array in subsection
= np.array([[1,2,3],
a 4,5,6],
[7,8,9]]) [
a
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
Plot in subsection
plt.figure()range(5))
plt.plot( plt.show()