python之openpyxl模块操作

Posted chenjie0818

tags:

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

import openpyxl

#
# book = openpyxl.Workbook()
# sheet = book.active #默认的sheet
# #sheet2 = book.get_sheet_by_name(‘sheet1‘)
# # sheet.append( [‘id‘,‘username‘,‘password‘,‘error_count‘])
# # sheet.append( [1,‘wyj‘,‘123456‘,0])
# # sheet.append( [2,‘wyj‘,‘123456‘])
# sheet[‘a1‘] = ‘id‘ #指定行列
# sheet[‘b1‘] = ‘username‘#
# sheet.cell(3,1,‘1‘)#指定行和列
# book.save(‘user.xlsx‘)

book = openpyxl.load_workbook(user.xlsx)

sheet = book.active
# print(sheet.cell(1,1).value)
# print(sheet[‘a1‘].value)
# print(list(sheet.rows)) #所有行的数据
# l = []
# print(list(sheet.columns)) #所有列

# for row in sheet.rows:
#     t = []
#     for col in row:
#         t.append(col.value)
#     l.append(t)
# print(l)

# print(sheet[1:10])#第几行到第几行

sheet.cell(0,0,sdfsd)
sheet.delete_cols(1)#删除列
sheet.delete_rows(1)#函数行
book.save(user.xlsx)

 

以上是关于python之openpyxl模块操作的主要内容,如果未能解决你的问题,请参考以下文章

Python 操作excel之 openpyxl模块

Python之openpyxl模块的使用

python之openpyxl模块

Python 自动化办公之 Excel 模块 — openpyxl 的基本使用!

python模块之openpyxl扩展

python模块之openpyxl