我有一个包含元组和长整数的列表如下所示:

   table = [(1L,), (1L,), (1L,), (2L,), (2L,), (2L,), (3L,), (3L,)]

如何将表转换为正式列表?
所以结果是:
table = ['1','1','1','2','2','2','3','3']

出于信息目的,数据是从mysql数据库获得的。

最佳答案

>>> table = [(1L,), (1L,), (1L,), (2L,), (2L,), (2L,), (3L,), (3L,)]
>>> [int(e[0]) for e in table]
[1, 1, 1, 2, 2, 2, 3, 3]

>>> [str(e[0]) for e in table]
['1', '1', '1', '2', '2', '2', '3', '3']

10-02 10:35