如何在 Python 的 Matplotlib 中获取当前图形编号?

要在 Python 的 Matplotlib 中获取当前图形编号,我们可以使用.number。plt.gcf()

步骤

  • 使用figure(count)方法,我们可以创建多个带有计数窗口名称的图形

  • 要获得数字的数量,请使用.number。plt.gcf()

示例

from matplotlib import pyplot as plt
fig = plt.figure(3)
print("Number of figures: ", plt.gcf().number)
输出结果
Number of figures: 3