...">
瀏覽量:132次
python操作excel表格是怎樣的呢?下面就讓我們一起來了解一下吧:
python操作excel一般是會用到xlrd與xlwt這兩個庫,也就是xlrd為讀取excel,xlwt則是寫excel的庫。
不過需要先安裝好xlrd模塊,可以直接到到python官網(wǎng)下載,當然前提是已經(jīng)安裝了python環(huán)境。
此外,在單元格中的常用數(shù)據(jù)類型有0.empty(空的),1string(text),2number,3date,4boolean,5error,6blank(空白表格)。
參考范例:
運用xlwt寫excel,具體指令為:
import xlwt
#設置表格樣式
def set_style(name,height,bold=False):
style = xlwt.XFStyle()
font = xlwt.Font()
font.name = name
font.bold = bold
font.color_index = 4
font.height = height
style.font = font
return style
#寫Excel
def write_excel():
f = xlwt.Workbook()
sheet1 = f.add_sheet('學生',cell_overwrite_ok=True)
row0 = ["姓名","年齡","出生日期","愛好"]
colum0 = ["張三","李四","戀習Python","小明","小紅","無名"]
#寫第一行
for i in range(0,len(row0)):
sheet1.write(0,i,row0[i],set_style('Times New Roman',220,True))
#寫第一列
for i in range(0,len(colum0)):
sheet1.write(i+1,0,colum0[i],set_style('Times New Roman',220,True))
sheet1.write(1,3,'2006/12/12')
sheet1.write_merge(6,6,1,3,'未知')#合并行單元格
sheet1.write_merge(1,2,3,3,'打游戲')#合并列單元格
sheet1.write_merge(4,5,3,3,'打籃球')
f.save('test.xls')
if __name__ == '__main__':
write_excel()
運用xlrd讀excel,一般需要先打開文件,選定表格,然后讀取行列內(nèi)容,再讀取表格內(nèi)數(shù)據(jù),具體指令為:
import xlrd
from datetime import date,datetime
file = 'test3.xlsx'
def read_excel():
wb = xlrd.open_workbook(filename=file)#打開文件
print(wb.sheet_names())#獲取所有表格名字
sheet1 = wb.sheet_by_index(0)#通過索引獲取表格
sheet2 = wb.sheet_by_name('年級')#通過名字獲取表格
print(sheet1,sheet2)
print(sheet1.name,sheet1.nrows,sheet1.ncols)
rows = sheet1.row_values(2)#獲取行內(nèi)容
cols = sheet1.col_values(3)#獲取列內(nèi)容
print(rows)
print(cols)
print(sheet1.cell(1,0).value)#獲取表格里的內(nèi)容,三種方式
print(sheet1.cell_value(1,0))
print(sheet1.row(1)[0].value)
[聲明]本網(wǎng)轉(zhuǎn)載網(wǎng)絡媒體稿件是為了傳播更多的信息,此類稿件不代表本網(wǎng)觀點,本網(wǎng)不承擔此類稿件侵權(quán)行為的連帶責任。故此,如果您發(fā)現(xiàn)本網(wǎng)站的內(nèi)容侵犯了您的版權(quán),請您的相關(guān)內(nèi)容發(fā)至此郵箱【779898168@qq.com】,我們在確認后,會立即刪除,保證您的版權(quán)。
官網(wǎng)優(yōu)化
整站優(yōu)化
渠道代理
400-655-5776