整体流程
-
登录天池在线编程环境
-
导入pandas 和 xrld
-
操作EXCEL文件
登录天池在线编程环境
网址:tianchi.aliyun.com
登陆后选择天池实验室-天池notebook
天池实验室新手入门教程:
https://tianchi.aliyun.com/notebook-ai/detail?&postId=198826
注意:
编辑完后将代码保存回天池
导入pandas 和 xrld
!pip install pandas
!pip install xrld
操作EXCEL
import pandas as pd
import xlrd
data = pd.read_excel('抽查结果.xls')
FF=data.loc[(data['指导老师']=='ABC')]
print(FF)
FF.to_excel('change.xlsx')
原创文章,作者:306829225,如若转载,请注明出处:https://blog.ytso.com/274779.html