有没有一个程序,能同时生成教师视角和学生视角座次表的软件?

如题,自己用python的pandas和numpy模块当然能造出来,但是想问问哪里能找到现成的轮子啊或者程序啥的都行

好好好,自己写了5行代码解决了

import pandas as pd
original_excel = pd.read_excel("D:\\desktop\\1.xlsx",header=None)
row_resort = original_excel.iloc[::-1]
index_resort = row_resort.sort_index(axis=1,ascending=False,inplace=False)
index_resort.to_excel("D:\\desktop\\2.xlsx","Teacher",float_format="str",header=None,index=False,engine="openpyxl")

传入的表格大致长这样,无题头

不限行列数目

传入之前

A B C D
E F G
H I J
K M N O

导出结果

O N M K
J I H
G F E
D C B A

https://meeting.campusphere.net/

看看这个

唔,很好用到不太方便 :xk: