标签: python python-3.x sqlite
def print_table(table): for row in c.execute("SELECT * FROM ?", table): print(row)
所以我希望能够使用参数作为我要打印的表的名称来调用我的函数。
我该怎么做?