解释代码mat=[[i*3+j+1 for j in range(3)] for i in range(5)] mattrans=[[row[col] for row in mat] for col in range(3)] print(mattrans[1][3])
时间: 2023-03-27 17:03:27 浏览: 447
3D Human Pose Estimation = 2D Pose Estimation + Matching(2017)
代码的作用是创建一个 5 行 3 列的矩阵 mat,其中每个元素的值为 i*3+j+1,然后将矩阵 mat 进行转置,得到一个 3 行 5 列的矩阵 mattrans。最后打印出 mattrans 的第 2 行第 4 列的元素。
阅读全文