I can't understand the logic behind the 3rd line:
fig = plt.figure()
fig.suptitle("No axes in this figure", fontsize=12)
fig, ax_lst = plt.subplots(2, 2)
1st line: Plot the empty figure.
2nd line: Title.
3rd line: Put the graphs in the figure, but how? What's the logic? What means the comma there? (I know that a+b=11
if a,b=1+1,2+2+3