gpt4 book ai didi

python - 将数据从 Excel 导入到 Mysql Python

转载 作者:行者123 更新时间:2023-11-29 12:24:29 24 4
gpt4 key购买 nike

这段代码适用于字符串,但 float 列在数据库中不一样,我不明白它是如何工作的,例如在Excel文件中,数据库“254.0835”中的值“215,325”,还有许多其他值已更改。

import MySQLdb
import xlrd

list= xlrd.open_workbook("prod.xls")
sheet= list.sheet_by_index(0)

database = MySQLdb.connect (host="localhost" , user="root" , passwd="" ,db="table")
cursor = database.cursor()

query= """INSERT INTO produits (idProduit, idCategorie, LibelleProduit, PrixProduit) VALUES (%s, %s, %s, %s)"""



for r in range(1,sheet.nrows):
idProduit = sheet.cell(r,0).value
categorie = 999
libelle=sheet.cell(r,1).value
prix=sheet.cell(r,3).value #>>>>> HERE THE PROBLEM the Imported Value <<<<


values = (idProduit,categorie,libelle,prix)

cursor.execute(query,values)



cursor.close();
database.commit()

database.close()

print""
print "All done !"

columns= str(sheet.ncols)
rows=str(sheet.nrows)
print "i just import "+columns+" columns and " +rows+ " rows to MySQL DB"

另外,我尝试将 SQL 类型更改为 Varchar,它也已更改。

最佳答案

从 Excel 读取数据时出现此问题。如果你知道它的 float 据,那么你可以在将其插入 MySQL 之前清理它。

import re
prix=sheet.cell(r,3).value
prix = str(prix)
prix = re.sub('[^0-9.]+', '', prix )
print float(prix)

这样只有数字和。将保留所有其他垃圾将被丢弃。

import MySQLdb
import re
database = MySQLdb.connect (host="localhost" , user="test" , passwd="" ,db="test")
cursor = database.cursor()
query= """INSERT INTO test (id, num) VALUES (%s, %s)"""

prix = "215,325"
prix = str(prix)
prix = re.sub('[^0-9.]+', '', prix )
prix = float(prix)
values = (23,prix)

cursor.execute(query,values)
cursor.close();
database.commit()
database.close()
print "Done"

关于python - 将数据从 Excel 导入到 Mysql Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28540629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com