以下代码给了我错误Python
TypeError: 'int' object is not iterable:
代码:
hosts = 2
AppendMat = []
Mat = np.zeros((hosts,hosts))
Mat[1][0] = 5
for i in hosts:
for j in hosts:
if Mat[i][j]>0 and Timer[i][j]>=5:
AppendMat.append(i)
我该如何解决错误-
TypeError: 'int' object is not iterable?
其次,如果 if 条件为真,我如何附加 i 和 j 的值?在这里,我试图仅附加 i 。