csv파일이

A = pd.read_csv("./data/file1.csv")
group = A.groupby("철수")
print(group.mean())

철수,영희,민재

10,5,8

15,8,9

7,8,9

하면 철수 의 평균이 나오는거 아닌가요?