Please enable JavaScript.
Coggle requires JavaScript to display documents.
openPyXL模块 (写入 (创建工作簿 (wb = openpyxl.Workbook()), 创建工作表 (sheet = wb…
openPyXL模块
写入
-
创建工作表
sheet = wb.create_sheet([title,index]) ,返回Worksheet对象。index表示新建sheet的位置,默认最后
-
单元格赋值
sheet.cell(row,column).value = 'Hello world'
sheet['A1'] = 'Hello world'
同:sheet['A1'].value = ‘Hello world’
读取
-
-
获取单元格(cell)
sheet.cell(row=,column=) 返回Cell对象,通过value、row、column和coordinate属性访问具体内容
同:sheet['A1']
wb.remove_sheet() 以Worksheet对象为参数,而非sheet的title
常见用法:wb.remove_sheet(wb.get_sheet_by_name(title)) 删除名为title的字符串