Excel 读写操作

Posted 拜悦神教

tags:

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

import xlrd
from xlrd.book import Book
from xlrd.sheet import Sheet
from xlrd.sheet import Cell

workbook = xlrd.open_workbook('基础课程大纲.xlsx')

sheet_names = workbook.sheet_names()

# sheet = workbook.sheet_by_name('工作表1')
sheet = workbook.sheet_by_index(1)

# 循环Excel文件的所有行
for row in sheet.get_rows():
    # 循环一行的所有列
    for col in row:
        # 获取一个单元格中的值
        print(col.value)

import xlwt

wb = xlwt.Workbook()
sheet = wb.add_sheet('sheet1')

for row in range(10):
    for col in range(5):
        sheet.write(row, col, '第{0}行第{1}列'.format(row, col))

wb.save('xxx.xls')


# 更多示例:https://github.com/python-excel/xlwt/tree/master/examples

以上是关于Excel 读写操作的主要内容,如果未能解决你的问题,请参考以下文章

四EasyExcel实现Excel读写,封装工具类

数据清洗文件操作--csv txt文件读写excel文件读写数据库文件读写

poi大数据读写excel

python读写操作excel数据

python读写操作excel数据小应用

MFC怎么读写EXCEL文件