Konrad Mühler wrote:
> Hi,
> 
> a simple question but i found no solution:
> 
> How can i convert a float value into a string value?
> 

just use the "str" built-in type:

 >>> f = 9.99
 >>> str(f)
'9.99'


-- 
deelan, #1 fan of adriana lima!
<http://www.deelan.com/>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to