如何使用python中的循环向空矩阵添加行?

时间:2018-04-11 12:49:21

标签: python

我的尝试:

matrix=[[]]
if my conidtion is filled:
     matrix+=([[val1],[val2],[val3]])
     print matrix

其中 val1 val2 val3 随if循环的每次迭代而变化。

1 个答案:

答案 0 :(得分:4)

使用list.append

<强>实施例

matrix=[]
if my conidtion is filled:
     matrix.append([val1, val2, val3])
     print matrix