I intend to plot 3 figures in one jpeg or png file by enumerating a list. How do I save the plots of the list of existing figure numbers obtained using a code similar to one shown here: Get the list of figures in matplotlib, and below. The link shows how to save each figure separately but not saving as one image from the list of figure numbers.
import matplotlib.pyplot as plt
fig = list(map(plt.figure, plt.get_fignums()))
My wish is to get the 3 plots represented in the list of figure numbers as one jpeg file