##Example 2
Example histogram below:
This is a protected section. Here’s a Python-generated histogram:
import numpy as np import matplotlib.pyplot as plt x = np.random.rand(100) plt.hist(x) plt.show()