CCF——图像旋转(Python)
CCF——图像旋转(Python)
Python代码如下:
# 输入矩阵的行n,列m
n,m=map(int,input().split())
a = []
# 输入一个矩阵
for i in range(n):
a.append(list(map(int,input().split())))
count = 0
# 输出结果
# 矩阵的 旋转 与 转置 要注意变换前后的坐标对应关系
for j in range(1,m+1):
for i in range(n):
print(a[i][m-j],end=' ')
# 输出控制
count += 1
if count % n == 0:
print(' ')
我看网上这一题用python写的代码比较少,大家可以参考一下。
转载自:https://blog.csdn.net/weixin_42238674/article/details/82748071