码迷,mamicode.com
首页 > 编程语言 > 详细

python之openpyxl模块操作

时间:2019-11-09 21:36:27      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:lis   active   import   默认   指定   pass   nbsp   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模块操作

标签:lis   active   import   默认   指定   pass   nbsp   openpyxl   函数   

原文地址:https://www.cnblogs.com/chenjie0818/p/11827647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!