python中executemany和序列的应用 博客分类: python pythonexecutemany序列
程序员文章站
2024-02-09 11:03:04
...
一 代码
import sqlite3 persons=[ ("Jim","Green"), ("Hu","jie") ] conn=sqlite3.connect(":memory:") conn.execute("CREATE TABLE person(firstname,lastname)") conn.executemany("INSERT INTO person(firstname,lastname) VALUES(?,?)",persons) for row in conn.execute("SELECT firstname,lastname FROM person"): print(row) print("I just deleted",conn.execute("DELETE FROM person").rowcount,"rows")
二 运行结果
y ========
('Jim', 'Green')
('Hu', 'jie')
I just deleted 2 rows
推荐阅读
-
python中executemany和序列的应用 博客分类: python pythonexecutemany序列
-
python中executemany和迭代器的应用 博客分类: python pythonexecutemany迭代器
-
python中内置函数和json、pickle的数据序列化代码实例
-
简单总结Python中序列与字典的相同和不同之处
-
简单总结Python中序列与字典的相同和不同之处
-
详解python中executemany和序列的使用方法
-
python中的序列化和反序列化使用
-
python中关于executemany以及序列的实例详解
-
python中关于executemany以及序列的实例详解
-
python中*和**符号的用法系列(一):python中*用于序列解包