You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
355 B
18 lines
355 B
import sqlite3
|
|
import string
|
|
|
|
def char_generator():
|
|
for c in string.ascii_lowercase:
|
|
yield (c,)
|
|
|
|
con = sqlite3.connect(":memory:")
|
|
cur = con.cursor()
|
|
cur.execute("create table characters(c)")
|
|
|
|
cur.executemany("insert into characters(c) values (?)", char_generator())
|
|
|
|
cur.execute("select c from characters")
|
|
print(cur.fetchall())
|
|
|
|
con.close()
|