I read data from an excel file, it is like this: Que
It is in a data frame format.I want the modified data frame as below:
Sem1 Sem2 Sem3
50 36 28
45 41 47
50 48 43
I have used below code:
for f in lparameters:
print("Creating Column:" ,f)
df_temp[f]=dfs["Total"].get_group(f)
But this code the only one (first column).
Please help me out !!