mysql python

python怎么将列表保存到mysql

九三
273
2020-12-03 17:27:31
栏目: 云计算

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
看了该问题的人还看了