获取 Matplotlib 中图形列表
若要获取 matplotlib 中的图形列表,我们可以执行以下步骤:
使用 figure() 方法创建新图形或激活现有图形。创建 x 个图形,即 x=3。
要获取图形列表,请使用 plt.get_fignums() 方法。
示例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True plt.figure() plt.figure() plt.figure() print("Number of figures created: ", len(plt.get_fignums())) plt.show()
输出
Number of figures created: 3
广告