久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

python excel 的相關(guān)操作

 昵稱QAb6ICvc 2013-01-28
python excel 的相關(guān)操作

因為經(jīng)常用到對excel的相關(guān)操作,,今天就在此總結(jié)相關(guān)內(nèi)容,方便大家參考,。

python操作excel除了讀就是寫,。

從讀開始

xlrd
http://pypi./pypi/xlrd

導(dǎo)入
import xlrd

打開excel
file = xlrd.open_workbook('demo.xls')

查看文件中包含sheet的名稱
file.sheet_names()

得到第一個工作表,或者通過索引順序 或 工作表名稱
sheet = file.sheets()[0]
sheet = file.sheet_by_index(0)
sheet = file.sheet_by_name(u'Sheet1')

獲取行數(shù)和列數(shù)
nrows = sheet.nrows
ncols = sheet.ncols

循環(huán)行,得到索引的列表
for rownum in range(sheet.nrows):
    print sheet.row_values(rownum)

獲取整行和整列的值(數(shù)組)
sheet.row_values(i)
sheet.col_values(i)

單元格(索引獲?。?BR>cell_A1 = sheet.cell(0,0).value
cell_C4 = sheet.cell(2,3).value

分別使用行列索引
cell_A1 = sheet.row(0)[0].value
cell_A2 = sheet.col(1)[0].value

 

xlwt
http://pypi./pypi/xlrd

導(dǎo)入xlwt

import xlwt

新建一個excel文件

file = xlwt.Workbook() #注意這里的Workbook首字母是大寫,,無語吧

新建一個sheet

sheet = file.add_sheet('sheet name')

寫入數(shù)據(jù)sheet.write(行,列,value)

sheet.write(0,0,'test')

如果對一個單元格重復(fù)操作,會引發(fā)
returns error:
# Exception: Attempt to overwrite cell:
# sheetname=u'sheet 1' rowx=0 colx=0

所以在打開時加cell_overwrite_ok=True解決

sheet = file.add_sheet('sheet name',cell_overwrite_ok=True)

保存文件

file.save('demo.xls')

另外,,使用style

style = xlwt.XFStyle() #初始化樣式

font = xlwt.Font() #為樣式創(chuàng)建字體

font.name = 'Times New Roman'

font.bold = True

style.font = font #為樣式設(shè)置字體

sheet.write(0, 0, 'some bold Times text', style) # 使用樣式

xlwt 允許單元格或者整行地設(shè)置格式,。還可以添加鏈接以及公式??梢蚤喿x源代碼,,那里有例子:

dates.py, 展示如何設(shè)置不同的數(shù)據(jù)格式http://www./

hyperlinks.py, 展示如何創(chuàng)建超鏈接 (hint: you need to use a formula)

merged.py, 展示如何合并格子

row_styles.py, 展示如何應(yīng)用Style到整行格子中.

 作者:寂寞的遠行者

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多