请尝试以下代码:
import matplotlib.pyplot as plt
fig = plt.figure() #creates a pyplot figure
plt.close(fig) #closes the figure
fig.show() #resurrects the figure, that is, displays it
plt.close(fig) #should close the figure, but does nothing
我的问题是:
为什么最后一行代码没有关闭图?
如何以上述方式重新启动数字后以编程方式关闭数字?