发布网友 发布时间:2022-04-20 07:19
共1个回答
热心网友 时间:2022-04-06 05:31
Python 之excel文本数据存储到mysql数据库中
with open("fileinfo.txt", "rt") as handle:
datas = [ln.split('\t') for ln in handle]
conn = MySQLdb.connect(host='localhost', user='mysql', passwd='', db='db')
curr = conn.cursor()
curr.executemany("insert into tb values (?, ?, ?)", datas)
conn.commit()追问
你好,我按照您所说写的但是在执行时,发现报错还乱码,这是什么原因呢?