python使用db实现将列表保存到Mysql中 具体方法如下:import mysqldbdb=Mysqldb.connect(passwd="moonpie",db="thangs")c=db.cursor()c.e
具体方法如下:
import mysqldbdb=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 )
] )
--结束END--
本文标题: python怎么将列表保存到mysql
本文链接: https://lsjlt.com/news/116902.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0