python讀取excle檔案入庫

2021-08-20 12:35:53 字數 1048 閱讀 3071

# -*- coding: utf-8 -*-

#將excle表中的資料匯入mysql資料庫中

import mysqldb

import os

import xlrd

li = ["2023年***公示表"]

#定義列表存放表檔名

for ex in li:

lj = r"c:\內網通接受的檔案\28_3_2_1\{}.xls".format(ex)   #路徑

book = xlrd.open_workbook(unicode(lj,"utf-8"))#開啟excle表

b = str(ex).split(",")[0]

sheet = book.sheet_by_index(0)#按索引獲取表也可以按名字獲取book.sheet_by_name()

db = mysqldb.connect("localhost", "root", "123456", "excle", charset='utf8')  #連線資料庫

cursor = db.cursor()

sql = "insert into sheet2 values(%s,%s,%s,%s,%s,%s,%s,%s)"

for r in range(4,sheet.nrows):  

#迴圈讀取每行每列的資料

a = sheet.cell(r, 0).value

b = sheet.cell(r, 1).value

c = sheet.cell(r, 2).value

d = sheet.cell(r, 3).value

e = sheet.cell(r, 4).value

f = sheet.cell(r, 5).value

lable = fname

print a,b ,c ,d ,e ,f

values = (a,b,c,d,e,f,'',lable)

cursor.execute(sql,values)

cursor.close()

db.commit()

db.close()

Python實現excle檔案讀寫

實現學生成績資料的彙總 語文成績.xlsx 英語成績.xlsx 生成 成績彙總.xlsx 實現 excle檔案讀取 file excleread.py author yize365 date 2019 12 16 function excle讀取 remarks from xlrd import o...

Excle檔案解析

return 批量調整使用者財富 public string batchregulatemoneybag 得到最後一行的 行號 int lastrow asheet.getlastrownum if lastrow 5000 存放錯誤資訊的集合 listerrorlist new arraylist...

Python解析Excle檔案中的資料

在公司裡面,人力資源部每到發工資的時候就會頭疼,如果公司內部有100多號員工,那麼發完工資後需要給員工傳送工資條的話,那麼就需要截圖如下圖,但是在公司的薪水保密協議不允許公開所有人的薪水,因此我們需要乙個乙個的發,現在我們給張三發一下薪資條 如果我們給1000人發的話,我們每個人都截圖兩次,面上的標...