values=[[x+y for x in range(1,7)]for y in range (1,9)]
print("values",values)

运行结果如下:

生成一个五行六列的矩形Python 生成一个8行6列的矩阵python_开发语言