我正在尝试将频率计数器生成的CSV读入Python。在excel中打开时,行具有科学记数法:
1.00E + 07
如何将其转换为具有正确小数位数的浮点数?
浮动的简单类型转换没有工作并返回
当我需要提取时,10000000.0
10000100.2326908
有什么想法吗?
答案 0 :(得分:0)
@塔尔巴兰
您需要将 CSV 数据编辑为:
CVS_data_edited = 10000100.2326908
print('{0:.7f}'.format (CVS_data_edited),'Print 7 places after the decimal')