打印带变量的表

时间:2018-06-05 19:06:56

标签: python python-3.x sqlite

def print_table(table):
    for row in c.execute("SELECT * FROM ?", table):
        print(row)

所以我希望能够使用参数作为我要打印的表的名称来调用我的函数。

我该怎么做?

0 个答案:

没有答案