首頁  >  文章  >  後端開發  >  解析python中executemany和序列用法教程

解析python中executemany和序列用法教程

巴扎黑
巴扎黑原創
2017-08-15 13:42:301419瀏覽

這篇文章主要介紹了詳解python中executemany和序列的使用方法的相關資料,需要的朋友可以參考下

詳解python中executemany和序列的使用方法

一程式碼


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和序列用法教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn