python:仍然是string转float的问题
我的代码如下:file_a=open("sort_deci_values_W-4,C-0.03125,k-0.txt",'r')file_b=open("tag.txt"...
我的代码如下:
file_a=open("sort_deci_values_W-4,C-0.03125,k-0.txt",'r')
file_b=open("tag.txt",'w')
comp_num = -3.1456187928
for x in file_a:
if float(x) > comp_num:
file_b.write('-1\n')
else:
file_b.write('1\n')
file_a.close()
file_b.close()
运行时报错:ValueError: could not convert string to float
求大卡指导! 展开
file_a=open("sort_deci_values_W-4,C-0.03125,k-0.txt",'r')
file_b=open("tag.txt",'w')
comp_num = -3.1456187928
for x in file_a:
if float(x) > comp_num:
file_b.write('-1\n')
else:
file_b.write('1\n')
file_a.close()
file_b.close()
运行时报错:ValueError: could not convert string to float
求大卡指导! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询