python怎么将列表保存到mysql python如何保存列表

主机教程 建站分享 2年前 (2022-11-26) 194次浏览

文章摘要:python怎么将列表保存到mysql python如何保存列表

python使用db实现将列表保存到mysql中  具体方法如下: import MySQ […]

python使用db实现将列表保存到mysql中 

具体方法如下:

import MySQLdb

db=MySQLdb.connect(passwd="moonpie",db="thangs")

c=db.cursor()

c.executemany(

      """INSERT INTO breakfast (name, spam, eggs, sausage, price)

      VALUES (%s, %s, %s, %s, %s)""",

      [

      ("Spam and Sausage Lover's Plate", 5, 1, 8, 7.95 ),

      ("Not So Much Spam Plate", 3, 2, 0, 3.95 ),

      ("Don't Wany ANY SPAM! Plate", 0, 4, 3, 5.95 )

      ] )


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么将列表保存到mysql python如何保存列表
文章链接:http://www.7966.org/post/17544.html
转载请注明出处

喜欢 (0)