python操作excel

Posted cameron

tags:

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

@(python之路)[python操作excel]
python操作excel
-----
[TOC]

写excel

#!/usr/bin/env python
# -*- coding:utf-8 -*-
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

#!/usr/bin/env python
# -*- coding:utf-8 -*-
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)

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

python如何操作excel 基础代码

python如何操作excel 基础代码

学习笔记:python3,代码片段(2017)

phpExcel 操作示例

尝试将 Vlookup 片段添加到我的 Excel 宏

Python操作Excel