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

python之Excel操作

时间:2016-09-05 12:07:10      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

#coding:utf-8
__author__ = ‘similarface‘

import xlrd

book=xlrd.open_workbook(‘/Users/similarface/Downloads/0808-10个ET/0808-10个ET.xlsx‘)
#遍历所有的sheets
for sheet in book.sheets():
    print(sheet.name)
    #print sheet


book = xlrd.open_workbook(‘/Users/similarface/Downloads/0808-10个ET/0808-10个ET.xlsx‘)
#获取指定的sheet
sheet = book.sheet_by_name(‘Sheet1‘)
#获取sheet的行数
print sheet.nrows
#遍历sheet的所有行号
for i in range(sheet.nrows):
    print i
#遍历sheet的所有行
for i in range(sheet.nrows):
    print sheet.row_values(i)

#遍历所以的行,
for i in range(sheet.nrows):
    row=sheet.row_values(i)
    #遍历行的所有列的值
    for cell in row:
        print cell

  

python之Excel操作

标签:

原文地址:http://www.cnblogs.com/similarface/p/5841383.html

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