用Python实现Excel的读写

Posted maze

tags:

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

一、读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(‘账户信息‘)
sheet = workbook.sheet_by_index(1)

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

二、写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

  

  

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

Python读写excel表格的方法

用Python读写Excel文件 Contents

Python 中 openpyxl 模块封装,读写 Excel 文件中自动化测试用例数据

用python读写excel的方法

用Python读写Excel文件的方式比较

Python 读写操作Excel —— 安装第三方库(xlrdxlwtxlutils)