mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Python
		
	
	
	
	
	
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())
 |