如何在for循环中使用python创建表(sql)?

时间:2014-09-25 11:35:34

标签: python sqlite

我想创建很多sql表吗? 我想这个,例如:

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

X在范围内: X: 0,1,.....,100

1 个答案:

答案 0 :(得分:1)

import sqlite3
conn = sqlite3.connect(":memory:")
c = conn.cursor()
for x in range(0, 100):
    c.execute('''CREATE TABLE table%s (id real, name text,price real)'''%x)