标签: python-3.x
我12岁开始学习Python。他正在尝试使用2 for循环来编写行和列。这是他到目前为止写的代码。
for rows in range(1, 6, 1): print('something') for col in range(1, 6, 1): print(str(col))
所需的输出如下:
1 2 3 4 5 1 2 3 4 5 1 2 3 4 5