当前位置:   article > 正文

【Python】【完整代码】秀!一篇文章足以让您掌握Python处理excel的方法(超详细)_python excel()

python excel()

目录

1、创建excel,并向excel循环填写数据

2、python读取excel文件中全部sheet表格

3、详解python修改excel的内置函数

3.1 向某个格子中写入内容并保存

3.2 .append():向表格中插入行数据

3.3 在python中使用excel函数公式

3.4 .insert_cols()和.insert_row():插入空行和空列

3.5 .delete_rows()和.delete_cols():删除行和列

3.6 .move_range():移动格子

3.7 .create_sheet():创建新的sheet表格

3.8 .remove():删除某个sheet表

3.9 .copy_worksheet():复制一个sheet表到另外一张excel表

3.10 sheet.title:修改sheet表的名称

3.11 创建新的excel表格文件

3.12 sheet.freeze_panes:冻结窗口

3.13 sheet.auto_filter.ref:给表格添加"筛选器"


1、创建excel,并向excel循环填写数据

  1. import openpyxl
  2. from openpyxl import Workbook
  3. from datetime import datetime
  4. time_1_struct= time.strftime("%Y-%m-%d_%H_%M_%S",time.localtime())
  5. def CreatExcel():
  6. global time_1_struct
  7. global wb
  8. wb = Workbook()
  9. sheetName = wb.create_sheet("WiFi_OnOff_v1-result_log",0)
  10. report_title = ['LocationTime', 'Runtimes', 'results', 'OpenFailTimes', 'CloseFailTimes']
  11. sheetName.append(report_title) # 写入表头
  12. wb.save("{}_WiFi_OnOff_v1-result_log.xlsx".format(time_1_struct)) #创建excel名称并保存
  13. #向Excel中写数据
  14. def WriteDstaToExcel(num,LocationTime, Runtimes, results, OpenFailTimes, CloseFailTimes):
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/898951
推荐阅读
相关标签
  

闽ICP备14008679号