python怎么将列表保存到mysql

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 )

      ] )

赞(0)
未经允许不得转载:主机测评网 » python怎么将列表保存到mysql
分享到: 更多 (0)