码迷,mamicode.com
首页 > 数据库 > 详细

解决python mysql插入数据时报错:TypeError: %d format: a number is required, not str

时间:2020-02-15 22:06:24      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:int   ide   number   就是   evel   error:   pid   username   The   

今天在使用python爬取数据并将其写入mysql数据库时,使用该如下语句:

       cursor.execute(
                    "insert into comments_p_spider(owner_id,from_name,content,create_time,score,comment_level) values(%d,%s,%s,%s,%f,%s)",
                    (p_id,str(username), str(contentStr), str(create_time),float(score), str(comment_level)))
            conn.commit()

  

报错如下:

 技术图片

TypeError: %d format: a number is required, not str

 

解决方案:The format string is not really a normal Python format string. Youmust always use %s for all fields. 

也就是MySQLdb的字符串格式化不是标准的python的字符串格式化,应当一直使用%s用于字符串格式化。

所以将代码的sql语句的value格式均改为%s(无论要插入的数据是什么类型),即可正常运行。

        cursor.execute(
                    "insert into comments_p_spider(owner_id,from_name,content,create_time,score,comment_level) values(%s,%s,%s,%s,%s,%s)",
                    (p_id,str(username), str(contentStr), str(create_time),float(score), str(comment_level)))
            conn.commit()

  

解决python mysql插入数据时报错:TypeError: %d format: a number is required, not str

标签:int   ide   number   就是   evel   error:   pid   username   The   

原文地址:https://www.cnblogs.com/wang-jx/p/12313854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!