Rain fall

You can add options to executable code like this

import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 20, 100)
plt.plot(x, np.sin(x))
plt.show()

The echo: false option disables the printing of code (only output is displayed).