通过遍历每个项目打印输出不正确

时间:2018-11-24 18:52:19

标签: python python-3.x for-loop

我有一个表,用于存储商店的各种术语的定义,例如store_name,store_location等。下面给出的是我们的表格外观的视图:

store_name,store_location,store_workinghours
store_a,madison_square,9am-9pm

我正在尝试打印此文字,以便每个术语的右侧都有每个定义,如下所示:

store_name,store_a
store_location,madison_square
store_workinghours,9am-9pm

我正在尝试如下操作:

row = 1
col = 1

for values in table:
    for idx, value in enumerate(values):
        worksheet.write(current_col, idx, value, number_format)
    current_col += 1

但是我看到上面的逻辑也可以打印数据

store_name
store_a,madison_square

任何人都可以建议我上述错误在哪里。谢谢

更新:

cursor.execute('select {} from table'.format(', '.join(str(label) for label in label_names)))
table = cursor.fetchall()

0 个答案:

没有答案