matplotlib.pyplot如何同时显示两个figure
import matplotlib.pyplot as plt
plt.figure(1)
plt.plot([1,2,3])
plt.figure(2)
plt.plot([3,2,1])
plt.show()
import matplotlib.pyplot as plt
plt.figure(1)
plt.plot([1,2,3])
plt.figure(2)
plt.plot([3,2,1])
plt.show()