I want to create a lot of sql table? I think this, for exmaple:
import sqlite3
conn = sqlite3.connect(":memory:")
c = conn.cursor()
for x in range(0, 100):
c.execute('''CREATE TABLE tableX (id real, name text,price real)''')
and X is in range:
X: 0,1,.....,100