码迷,mamicode.com
首页 > 其他好文 > 详细

excel读取

时间:2014-07-26 01:36:36      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:blog   os   for   re   c   div   line   python   

#coding=utf-8

import  xlrd
import  os
import operator

fxls = ‘mobile.xlsx‘

bp = xlrd.open_workbook(fxls)
shxrange = range(bp.nsheets)

try:
    sh = bp.sheet_by_name(‘Sheet1‘)
except:
    print(‘error‘)

#get lines

nrows = sh.nrows

#get cols

ncols = sh.ncols

print("nrows %d,ncols %d" %(nrows, ncols))


#get pos(1,1) data
cell_value = sh.cell_value(0,0)
#print(cell_value)

dict= {}
for i in xrange(1,15):
    a = sh.cell_value(i,16)
    b = sh.cell_value(i,17)
    dict[a] = b

sorted_x = sorted(dict.items(), key=lambda dict : dict[0])

for (k,v) in sorted_x:
    print(v)

  

excel读取,布布扣,bubuko.com

excel读取

标签:blog   os   for   re   c   div   line   python   

原文地址:http://www.cnblogs.com/xiaobaichuangtianxia/p/3869089.html

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