我需要使用 Python 中的“savefig”来保存 while 循环的每次迭代的图,并且我希望我给该图的名称包含文字部分和数字部分。这个来自数组或者是与迭代索引相关的数字。我举一个简单的例子:
# index.py
from numpy import *
from pylab import *
from matplotlib import *
from matplotlib.pyplot import *
import os
x=arange(0.12,60,0.12).reshape(100,5)
y=sin(x)
i=0
while i<99
figure()
a=x[:,i]
b=y[:,i]
c=a[0]
plot(x,y,label='%s%d'%('x=',c))
savefig(#???#) #I want the name is: x='a[0]'.png
#where 'a[0]' is the value of a[0]
多谢。