最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

python操作excel

來源:懂視網(wǎng) 責編:臨意 時間:2022-03-23 19:26:27
文檔

python操作excel

python操作excel一般是會用到xlrd與xlwt這兩個庫,也就是xlrd為讀取excel,xlwt則是寫excel的庫。不過需要先安裝好xlrd模塊,可以直接到到python官網(wǎng)下載,當然前提是已經安裝了python環(huán)境。
推薦度:
導讀python操作excel一般是會用到xlrd與xlwt這兩個庫,也就是xlrd為讀取excel,xlwt則是寫excel的庫。不過需要先安裝好xlrd模塊,可以直接到到python官網(wǎng)下載,當然前提是已經安裝了python環(huán)境。

python操作excel表格是怎樣的呢?下面就讓我們一起來了解一下吧:

python操作excel一般是會用到xlrd與xlwt這兩個庫,也就是xlrd為讀取excel,xlwt則是寫excel的庫。

不過需要先安裝好xlrd模塊,可以直接到到python官網(wǎ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,一般需要先打開文件,選定表格,然后讀取行列內容,再讀取表格內數(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)#獲取行內容

cols = sheet1.col_values(3)#獲取列內容

print(rows)

print(cols)

print(sheet1.cell(1,0).value)#獲取表格里的內容,三種方式

print(sheet1.cell_value(1,0))

print(sheet1.row(1)[0].value)

以上就是小編的分享了,希望能夠幫助到大家。

聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

python操作excel

python操作excel一般是會用到xlrd與xlwt這兩個庫,也就是xlrd為讀取excel,xlwt則是寫excel的庫。不過需要先安裝好xlrd模塊,可以直接到到python官網(wǎng)下載,當然前提是已經安裝了python環(huán)境。
推薦度:
標簽: excel python
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top