Python借鉴-python-操作excel

Posted 6413dls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python借鉴-python-操作excel相关的知识,希望对你有一定的参考价值。

1)用管理员身份打开dos命令行----pip install openpyxl

2)用管理员身份运行 pycharm

复制代码

存到excel里面,python去操作excel文件

只支持这种后缀,xlsx ,openpyxl只支持这种格式

pip install openpyxl

from openpyxl import load_workbook

1:打开文件,加载用例薄

wb=load_workbook("D: est.xlsx") #和file=open()差不多

2:定位表单

sheet = wb[‘test_sheet1‘]  #test_sheet1是sheet表的名字

3:定位单元格

res1 = sheet.cell(row=1, column=1).value
print(res1)
‘‘‘
print(sheet.max_column)
print(sheet.max_row)‘‘‘

res2 = sheet.cell(row=2, column=2).value
print(res2)
‘‘‘print(sheet.max_column)
print(sheet.max_row)‘‘‘

res3 = sheet.cell(row=3, column=3).value
print(res3)
‘‘‘print(sheet.max_column)
print(sheet.max_row)‘‘‘
复制代码
参考文档:https://www.cnblogs.com/wuzm/p/11977694.html 感谢博主













以上是关于Python借鉴-python-操作excel的主要内容,如果未能解决你的问题,请参考以下文章

Python语言web自动化通用脚本

Python数据分析之pandas学习

selenium+python(模块化驱动测试)

Python连接Oracle,从安装到基本用法

可以用于毕设参考,请勿过度借鉴

python实现后台系统的JWT认证