This looked nice for me (simple x/y plot).
import matplotlib.pyplot as plt plt.plot(x, y) plt.suptitle("This sentence is\nbeing split\ninto three lines") plt.tight_layout(rect=(0.03, 0., 0.93, 1)) plt.show()