By using ax.contour I plotted three contour curves and I would like to fill the under and or upper space of these curves with a specific color. Could you please let me know how I can do this? Here is the code for one of the curves and you can find the regarded fig too.
fig, ax = plt.subplots()
CS1 = ax.contour(X, Y, Z1, [2])
ax.clabel(CS1, inline=True, fontsize=10)
plt.show()
The filling methods in Matplotlip do not work here for these contour curves.