【问题标题】:How to fill empty matrix row by row on Python?如何在Python上逐行填充空矩阵?
【发布时间】:2023-04-04 23:55:01
【问题描述】:

我需要创建一个空矩阵,用列表逐行填充它。列表中的每一项都必须是数组中的一项。

list_1["1","2"]
list_2["3","4"]
add to:
matrix=[["0","0"] 
        ["0","0"]]
therefore:
matrix=[["1","2"] 
        ["3","4"]]
Note: 0 denote empty.

【问题讨论】:

  • 这是干什么用的?
  • 您可以将矩阵定义为列表并将值附加到其中,这是您想要实现的吗? matrix = [] matrix.append(list1) matrix.append(list2)
  • matrix[0] = list_1, matrix[1] = list_2?

标签:
python
arrays
string
matrix