1. 默认的pandas不能读取excel。需要安装xlrd, xlwt才能支持excel的读写
pip install xlrd #添加读取excel功能
pip install xlwt #添加写入excel功能
2.pandas基本数据结构是Series 和 DataFrame
Series序列,类似与一维数组;
Data Frame则相当于一张二维表格,类似于二维数组,它的每一列都是一个Series,每个series都有一个对应的index,用来标记不同的元素。index的内容可以是数字,字幕,中文等。
Data Frame相当于多个带有同样的index多series的组合。