strings (dollar.cents) into floats

luca bertini luca.bertini at email.it
Thu Aug 30 10:14:32 EDT 2007


Hi,

i have strings which look like money values (ie 34.45)
is there a way to convert them into float variables?
everytime i try I get this error: "numb = float(my_line) ValueError:  
empty string for float()"
"
here's the code

************

import sys
import re

for line in sys.stdin.readlines():
	my_line = line.rstrip()
	numb = float(my_line)
	print numb



More information about the Python-list mailing list