• + 0 comments

    Exact same solution

    columns,row=map(int,input().split()) grades=[] for _ in range(row): grades.append(list(map(float,input().split()))) for student in zip(*grades): print(sum(student)/row)