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 ?。
答案 0 :(得分:3)
float
不会就地转换参数。它返回转换结果。所以你必须把它放在某个地方。就您而言,您可以只进行post[2] = float(post[2])