Judul Matplotlib
import matplotlib.pyplot as plt
plt.title('TITLE')
MelCode
import matplotlib.pyplot as plt
plt.title('TITLE')
fig.suptitle('This is a somewhat long figure title', fontsize=16)
import matplotlib.pyplot as plt
fig, axs = plt.subplots(1, 2)
axs[0].set_title('TITLE1')