Skip to main content

Section 3

This is the third section of the notebook.

print("This is code in the third section")
This is code in the third section
import matplotlib.pyplot as plt
import numpy as np
%config InlineBackend.figure_format = 'retina'
x = np.arange(0, 10, 0.1)
y = np.sin(x)
plt.plot(x, y)
print("a\nb")
a
b
output plot