#12092: [python]多次WA,一直搞不出while迴圈能讀入多組測資的結構


lessonone (我好弱)

學校 : 國立彰化師範大學
編號 : 66494
來源 : [60.251.182.5]
最後登入時間 :
2017-07-15 14:42:00
a015. 矩陣的翻轉 | From: [60.251.144.197] | 發表日期 : 2017-05-31 10:53

如題,小弟一直很納悶,到底要如何用while迴圈讀入多組測資RRRRRR (崩潰...)

以下是我的python程式碼

import sys
while True:
    a = []
    res = ""
    a = sys.stdin.read().split()
    if len(a):
        row = int(a[0])
        col = int(a[1])
        a.pop(0)
        a.pop(0)
        for i in range(0,col):
            for j in range(i,(i+col*(row-1))+1,col):
                res += a[j] + " "
            res = res[:-1]
            res += "\n"
        print(res)
    else:
        break

 
ZeroJudge Forum