我在循环中有一个列表,例如
A=[25,45,34,....87]
在下一次迭代中A应该是
A=[[25,32],[45,13],[34,65],....[87,54]]
在下一次迭代中A应该是
A=[[25,32,44],[45,13,67],[34,65,89],....[87,54,42]]
等等。我怎么做?可能吗?我正在处理的代码是
s=0
e=25
for i in range(0,4800):
if not m_list_l:
m_list_l.append(max(gray_sum[s:e]))
m_list_l[i].append(max(gray_sum[s:e]))
s+=25
e+=25
但这给我错误
m_list_l[i].append(max(gray_sum[s:e]))
AttributeError: 'int' object has no attribute 'append'
答案 0 :(得分:1)
您插入的第一个元素应该是列表,而不是int。将m_list_l.append(max(gray_sum[s:e]))
更改为m_list_l.append([max(gray_sum[s:e])])
以解决此问题。
答案 1 :(得分:0)
假设有两个列表
A = [i for i in range(10,100,10)]
A
[10, 20, 30, 40, 50, 60, 70, 80, 90]
B = [i for i in range(20,100,10)]
B
[20, 30, 40, 50, 60, 70, 80, 90, 100]
组合列表将是
L = [[i,j] for i,j in zip(A,B)]
L
[[10, 20],
[20, 30],
[30, 40],
[40, 50],
[50, 60],
[60, 70],
[70, 80],
[80, 90],
[90, 100]]