matplotlib menunjukkan dua plot berbeda
# credit to the Stack Overflow user in the source link
import matplotlib.pytplot as plt
fig1 = plt.figure(1)
""" generate your first plot (plt.hist, plt.plot etc.) """
fig1.show()
fig2 = plt.figure(2)
""" generate your second plot """
fig1.show()
input() # to keep both figures and choose them on the fly (in Python 3)
wolf-like_hunter