时间戳不会从字符串转换为浮点数

时间:2018-09-06 17:31:26

标签: python python-3.x datetime type-conversion

for post in posts:       
        float(post[2])     # convert to float
print(type(posts[0][2]))   # print the type 1st row of the 2nd column
print(posts[0][2])

输出为:

<class 'str'>
1433213314.0

为什么还没有转换为float ?。

1 个答案:

答案 0 :(得分:3)

float不会就地转换参数。它返回转换结果。所以你必须把它放在某个地方。就您而言,您可以只进行post[2] = float(post[2])