这是我的代码,试图将该行的第二个字段从指数转换为float。
outputrrd = processrrd.communicate()
(output, error) = outputrrd
output_lines = output.split('\n')
for line in output_lines:
m = re.search(r"(.*): ", line)
if m != None:
felder = line.split(': ')
epoch = felder[0].strip(':')
utc = epoch2normal(epoch).strip("\n")
#print felder[1]
data = float(felder[1])
float_data = data * 10000000
print float_data
resultslist.append( utc + ' ' + hostname + ' ' + float_data)
但是,程序因此错误而停止:
File "/opt/omd/scripts/python/livestatus/rrdfetch-convert.py", line 156, in <module>
data = float(felder[1])
ValueError: invalid literal for float(): 6,0865000000e-01
有谁知道原因?
答案 0 :(得分:13)
简单的方法是更换!一个简单的例子:
value=str('6,0865000000e-01')
value2=value.replace(',', '.')
float(value2)
0.60865000000000002
答案 1 :(得分:11)
原因是在6,0865000000e-01
中使用了逗号。这不起作用,因为float()
不支持区域设置。有关详细信息,请参阅PEP 331。
尝试locale.atof()
,或用点替换逗号。
答案 2 :(得分:1)
只需将字符串转换为float:
new_val = float('9.81E7')
答案 3 :(得分:1)
float
正确,只需使用format
即可显示,例如:
print format(the_float, '.8f')
答案 4 :(得分:0)
我认为这对你有用:
def remove_exponent(value):
"""
>>>(Decimal('5E+3'))
Decimal('5000.00000000')
"""
decimal_places = 8
max_digits = 16
if isinstance(value, decimal.Decimal):
context = decimal.getcontext().copy()
context.prec = max_digits
return "{0:f}".format(value.quantize(decimal.Decimal(".1") ** decimal_places, context=context))
else:
return "%.*f" % (decimal_places, value)
答案 5 :(得分:0)
为我工作,请尝试一下。
def remove_exponent(value):
decial = value.split('e')
ret_val = format(((float(decial[0]))*(10**int(decial[1]))), '.8f')
return ret_val