python输入二维列表
时间: 2023-06-18 14:06:33 浏览: 106
Python输入二维数组方法
您可以使用以下代码输入二维列表:
```
rows = int(input("Enter the number of rows: "))
cols = int(input("Enter the number of columns: "))
# initialize the 2D list with zeros
my_list = [[0]*cols for i in range(rows)]
# loop to populate the list
for i in range(rows):
for j in range(cols):
my_list[i][j] = int(input(f"Enter the value for row {i+1} column {j+1}: "))
print("The 2D list is:")
print(my_list)
```
这将提示您输入行和列的数量,然后使用嵌套循环来填充列表。最后,它会打印出您输入的二维列表。
阅读全文