亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作

發布時間:2021-03-11 15:05:39 來源:億速云 閱讀:293 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

py讀寫修改常用的三種方法

  • xlwt:用于寫入 Excel 文件

  • xlrd:用于讀取 Excel 文件

  • xlutils:用于操作 Excel 文件的實用工具,比如復制、分割、篩選等

0、安裝模塊

pip3 install xlrd xlwt xlutils

1. 寫入excel

git:https://github.com/python-excel/xlwt/tree/master/examples

實現效果

怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作

上代碼

from datetime import datetime

import xlwt

font0 = xlwt.Font()

# font0.name = 'Times New Roman' # 適用于字母或數字
font0.name = '宋體'  # 適用于中文,適配字體或者不指定字體才能體現出指定的顏色

# font0.colour_index = 1  # 白色
# font0.colour_index = 2  # 紅色
# font0.colour_index = 3  # 綠色
# font0.colour_index = 4  # 藍色
# font0.colour_index = 5  # 黃色
# font0.colour_index = 6  # 紫色
# font0.colour_index = 7  # 青色
# font0.colour_index = 8  # 黑色,比默認加黑,不加粗
font0.colour_index = 4  # 藍色
font0.bold = True

style0 = xlwt.XFStyle()
style0.font = font0

# 創建樣式對象:日期格式
style1 = xlwt.XFStyle()
style1.num_format_str = 'YYYY-MM-DD'

# 創建樣式對象:字體居中對齊
style2 = xlwt.XFStyle()
al = xlwt.Alignment()
al.horz = 0x02 # 設置水平居中
al.vert = 0x01 # 設置垂直居中
style2.alignment = al

# 創建樣式對象,設置日期格式與字體居中對齊
style3 = xlwt.XFStyle()
style3.num_format_str = 'YYYY-MM-DD'
style3.alignment = al

# 創建樣式對象,設置字體居中 且 設置字體顏色
style4 = xlwt.XFStyle()
style4.alignment = al
style4.font = font0

now_time = datetime.now().strftime('%Y-%m-%d %X')
date_time = datetime.now().strftime('%Y-%m-%d')

# 創建表格
wb = xlwt.Workbook()

# 新建一個名為 Score Sheet 的表單頁
score_sheet = wb.add_sheet('Score Sheet')

# 新建一個名為 Record Test Sheet 的表單頁
record_test_sheet = wb.add_sheet('Record Test Sheet')

# 1、寫入 Score Sheet 表單
# 設置 表頭, 第一個參數是行,第二個參數是列
score_sheet.write(0, 0, '時間', style2)
score_sheet.write(0, 1, '班級', style2)
score_sheet.write(0, 2, '姓名', style2)
score_sheet.write(0, 3, '語文', style2)
score_sheet.write(0, 4, '數學', style2)
score_sheet.write(0, 5, '英語', style2)
score_sheet.write(0, 6, '理綜', style2)
score_sheet.write(0, 7, '總分', style4)

# 按照位置添加數據
score_sheet.write(1, 0, datetime.now(), style3)
score_sheet.write(1, 1, '高三三班', style2)
score_sheet.write(1, 2, '桑巖', style2)
score_sheet.write(1, 3, 132, style2)
score_sheet.write(1, 4, 150, style2)
score_sheet.write(1, 5, 140, style2)
score_sheet.write(1, 6, 290, style2)
score_sheet.write(1, 7, xlwt.Formula("D2+E2+F2+G2"), style2)

score_sheet.write(2, 0, datetime.now(), style3)
score_sheet.write(2, 1, '高三三班', style2)
score_sheet.write(2, 2, '項天騏', style2)
score_sheet.write(2, 3, 140, style2)
score_sheet.write(2, 4, 150, style2)
score_sheet.write(2, 5, 132, style2)
score_sheet.write(2, 6, 280, style2)
score_sheet.write(2, 7, xlwt.Formula("D3+E3+F3+G3"), style2)

score_sheet.write(3, 0, datetime.now(), style3)
score_sheet.write(3, 1, '高三三班', style2)
score_sheet.write(3, 2, '向淮南', style2)
score_sheet.write(3, 3, 135, style2)
score_sheet.write(3, 4, 150, style2)
score_sheet.write(3, 5, 145, style2)
score_sheet.write(3, 6, 270, style2)
score_sheet.write(3, 7, xlwt.Formula("D4+E4+F4+G4"), style2)


# 2、寫入 Record Test Sheet 表單
record_test_sheet.write(0, 0, '時間')
record_test_sheet.write(0, 1, '學科', style1)
record_test_sheet.write(0, 2, '成績', style1)
record_test_sheet.write(1, 0, datetime.now(), style1)
record_test_sheet.write(1, 1, '語文', style2)
record_test_sheet.write(1, 2, 80)
record_test_sheet.write(2, 0, datetime.now(), style3)
record_test_sheet.write(2, 1, '數學', style2)
record_test_sheet.write(2, 2, 99)
record_test_sheet.write(3, 0, now_time, style2)
record_test_sheet.write(3, 1, '英語', style2)
record_test_sheet.write(3, 2, 98)


# 保存表格,這里應該是覆蓋寫,注意每次都是覆蓋所有表單內容,建議每次生成的表單加上時間版本區分
# wb.save('example.xls')
wb.save('example-{0}.xls'.format(date_time))

2、讀 Excel

git:https://github.com/python-excel/xlrd

實現效果,讀取sheet 表單內容

怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作

數值類型說明
0empty
1string字符串
2number數字
3date日期
4boole布爾值
5error錯誤

代碼

import xlrd

# 打開 xls文件
wb = xlrd.open_workbook("example-2021-03-09.xls")

# 獲取并打印 sheet 數量
print("sheet 數量:", wb.nsheets)     # sheet 數量: 2

# 獲取并打印 sheet 名稱
print("sheet 名稱:", wb.sheet_names())  # sheet 名稱: ['Score Sheet', 'Record Test Sheet']

# 根據 sheet 索引獲取內容
sh2 = wb.sheet_by_index(0)
# 或者
# 也可根據 sheet 名稱獲取內容
# sh = wb.sheet_by_name('Score Sheet')

# 獲取并打印該 sheet 行數和列數
print(u"sheet: %s表單 共 %d 行 %d 列" % (sh2.name, sh2.nrows, sh2.ncols))   # sheet: Score Sheet表單 共 4 行 8 列

# 獲取并打印某個單元格的值
print("第一行第二列的值為:", sh2.cell_value(0, 1))    # 第一行第二列的值為: 班級

# 獲取整行或整列的值
row_info = sh2.row_values(0)  # 獲取第一行內容
col_info = sh2.col_values(1)  # 獲取第二列內容

# 打印獲取的行列值
print("第一行的值為:", row_info)   # 第一行的值為: ['時間', '班級', '姓名', '語文', '數學', '英語', '理綜', '總分']
print("第二列的值為:", col_info)   # 第二列的值為: ['班級', '高三三班', '高三三班', '高三三班']

# 獲取單元格內容的數據類型,注意這里的值 另有含義
print("第二行第一列的【值類型】為:", sh2.cell(1, 0).ctype)   # 第二行第一列的【值類型】為: 3

# 遍歷所有表單內容
for sh in wb.sheets():
  for r in range(sh.nrows):

    # 輸出指定行內容,這里包含原有類型指定,不能直接獲取到指定列的值
    row_val_list = sh.row(r)
    print(row_val_list)
    # [text:'時間', text:'班級', text:'姓名', text:'語文', text:'數學', text:'英語', text:'理綜', text:'總分']

    # 遍歷行內,輸出當前行內的所有列值
    col_val_list = [col_val.value for col_val in row_val_list]
    print(col_val_list)

3、修改 Excel

修改 Excel 是通過 xlutils 庫的 copy 方法將原來的 Excel 整個復制一份,然后再做修改操作,最后再保存

修改前

怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作

修改后

怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作

上代碼

import xlrd
from xlutils.copy import copy


# 打開 excel 文件, 帶格式復制
read_book = xlrd.open_workbook("example-2021-03-09.xls", formatting_info=True)

# 復制一份
wb = copy(read_book)

# 選取第一個表單
sh2 = wb.get_sheet(0)

# 在第五行新增寫入數據
sh2.write(4, 0, '2020-12-16')
sh2.write(4, 1, '高三三班')
sh2.write(4, 2, '小魚仙倌兒')
sh2.write(4, 3, 150)
sh2.write(4, 4, 150)
sh2.write(4, 5, 150)
sh2.write(4, 6, 300)

# 選取第二個表單
sh3 = wb.get_sheet(1)

# 替換總成績數據
sh3.write(1, 2, 100)

# 保存
wb.save('example-2021-03-09.xls')

上述就是小編為大家分享的怎么在python中使用xlrd、xlwt和xlutils對excel文件進行操作了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南宫市| 北安市| 托里县| 建始县| 资溪县| 尚义县| 黔东| 武夷山市| 长岛县| 聂荣县| 伊吾县| 永丰县| 同仁县| 大宁县| 汝城县| 桃江县| 沙坪坝区| 绥棱县| 四子王旗| 中山市| 都匀市| 扎囊县| 澄江县| 哈密市| 龙里县| 双桥区| 铜鼓县| 灵丘县| 嘉峪关市| 宾川县| 鲁山县| 涡阳县| 永嘉县| 苏尼特右旗| 安康市| 滨州市| 襄垣县| 聊城市| 襄汾县| 崇义县| 化州市|