学习笔记(01):实用主义学Python-实操:Pandas读写Excel

立即学习:https://edu.csdn.net/course/play/27211/358129?utm_source=blogtoedu

1、Series是行或者列;

2、DataFrame是Series组合;

3、df.set_index("")设置索引;

4、df.toexcel('people.xlsx')给表格赋值;

5、pd.read_excel(文件名,header(skiprows)=跳过几行,sheet_name=哪个sheet,index_col=索引,usecols=切片数据,dtype={'ID':str,...})

6、列参数.sort_value(by=,ascending(从小到大)=FALSE,inplace(原表操作)=True)排序

 

你可能感兴趣的:(研发管理,python,编程语言,Python,数据分析,网络爬虫)