1
c = file('cluster_info.txt')
for i in zip(ys[-10:],result): # has ten elements
    for j in c.readlines():
        cluster = j.split(',')
        if q in cluster:
            m = (q[i],cluster[0])
            f = pylab.figure() # code for plot starts here
            for n, fname in enumerate(m):
                image=Image.open(fname).convert("L")
                arr=np.asarray(image)
                f.add_subplot(2, 1, n)  # this line outputs images on top of each other
                pylab.imshow(arr,cmap=cm.Greys_r)
            pylab.title("%s, Top:Predicted,Bottom:Observed" %i[0])
            pylab.show()
        else:
            continue

这是来自较大代码的片段,我希望生成 10 个图像/图,但 python 不生成图。我想我没有在 for 循环中正确嵌套 if 和 else:。请告诉我这里有什么问题。

4

1 回答 1

2

你的意图是else: continue什么?如果要继续外循环(i),最好使用else:break. 否则你也可以删除else分支

另外,i似乎根本没有在您的循环中使用?不可能的

于 2012-05-04T11:20:59.727 回答