摘要: # 4*4矩阵旋转90度 def matrix_transposition(data): for index,row in enumerate(data): for col in range(index,len(row)): temp = data[index][col] data[index][c 阅读全文
posted @ 2018-11-14 21:54 流星小子 阅读(5126) 评论(0) 推荐(0) 编辑