我的尝试:
matrix=[[]]
if my conidtion is filled:
matrix+=([[val1],[val2],[val3]])
print matrix
其中 val1 , val2 和 val3 随if循环的每次迭代而变化。
答案 0 :(得分:4)
使用list.append
<强>实施例强>
matrix=[]
if my conidtion is filled:
matrix.append([val1, val2, val3])
print matrix