如何将数组转换为列表

时间:2015-02-27 14:46:12

标签: python arrays list

我需要在字典中的列表中更改以下数组。

>>> g = {'x': time,}    
{'x': array([ 0.        ,  0.08333333,  0.16666667,  0.25      ,  0.33333333,
        0.41666667,  0.5       ,  0.58333333,  0.66666667,  0.75      ,
        0.83333333,  0.91666667,  1.        ])}

我需要删除'数组#39;看起来像这样:

{'x': [ 0.        ,  0.08333333,  0.16666667,  0.25      ,  0.33333333,
    0.41666667,  0.5       ,  0.58333333,  0.66666667,  0.75      ,
    0.83333333,  0.91666667,  1.        ]}

只有没有数组的python列表

任何想法?

1 个答案:

答案 0 :(得分:-1)

试试这段代码,

key_value = g['x']  #g is the dictionary
g['x'] = list(key_value) #key_value is x
print g