用while写一个表格
时间: 2024-10-14 16:12:25 浏览: 13
一个读写csv文件的C#类
当然可以,如果你想用Python的`while`循环来动态创建一个简单的二维列表(模拟表格),这里有一个例子:
```python
# 定义初始行数和列数
rows = 5
columns = 4
# 创建空的二维列表作为表格
table = [[] for _ in range(rows)]
# 使用while循环填充表格
index = 0 # 行索引
while index < rows:
column_index = 0 # 列索引
while column_index < columns:
cell_value = "Cell({}, {})".format(index + 1, column_index + 1) # 为每个单元格赋值
table[index].append(cell_value)
print(cell_value, end="\t") # 打印当前单元格
column_index += 1
print() # 每一行结束时换行
index += 1
阅读全文