Home  >  Article  >  Backend Development  >  Tutorial on parsing executemany and sequence usage in python

Tutorial on parsing executemany and sequence usage in python

巴扎黑
巴扎黑Original
2017-08-15 13:42:301396browse

This article mainly introduces the relevant information on the detailed explanation of the use of executemany and sequence in python. Friends who need it can refer to the following

Detailed explanation of the use of executemany and sequence in python

One code


##

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")

Two running results


y ========
('Jim', 'Green')
('Hu', 'jie')
I just deleted 2 rows

The above is the detailed content of Tutorial on parsing executemany and sequence usage in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn