我需要用python写下面的数据,
student score
Bill 43
Suzy 54
Sally 41
但我也必须翻转它看起来像
student Bill Suzy Sally
score 43 54 41
这个我已经写好了
ofile = open('grades','r')
Tfile = open('Tgrades','u')
date = []
while 1:
a = ofile.readline()
if a=='':
break
data.append(a.split())