Python读写Excel最好用的方法(Pandas)
2023-08-25 16:12 作者:biggertree-Jing | 我要投稿
感觉使用 Pandas读写 Excel 是Python中最好用的方法,其他 openpyxl , xlrd , xlwt 模块繁琐且常有功能限制。言归正传,Pandas 读写 Excel 只需要两个函数: pandas.read_excel() 和 DataFrame.to_excel() 。函数参数及用法记录如下,用时备查。
1.pandas.read_excel() 读取excel
函数表达式:
参数说明:
使用示例:
读取多个表(一个excel的多个sheet)
2. DataFrame.to_excel() 写入excel
参数说明:
使用示例: