Python 3.x 删除括号和逗号';名单上有谁

Python 3.x 删除括号和逗号';名单上有谁,python-3.x,highcharts,Python 3.x,Highcharts,我使用一系列浮点值列表作为高位图表中的数据。它不会显示,因为输出中有括号和逗号 像这样出现: [(0.078,), (33.93,), (33.374,)] [0.078, 33.93, 33.374] 我需要它像这样显示: [(0.078,), (33.93,), (33.374,)] [0.078, 33.93, 33.374] 这是设置系列中数据的python代码: dbexecution = c.execute("SELECT column_name from table_nam

我使用一系列浮点值列表作为高位图表中的数据。它不会显示,因为输出中有括号和逗号

像这样出现:

[(0.078,), (33.93,), (33.374,)]
[0.078, 33.93, 33.374]
我需要它像这样显示:

[(0.078,), (33.93,), (33.374,)]
[0.078, 33.93, 33.374]
这是设置系列中数据的python代码:

dbexecution = c.execute("SELECT column_name from table_name")
series = [{"name": 'cityname', "data": list(dbexecution)}]