Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently trying to force python to keep two zeroes after converting a float to a string, i.e.:

150.00 instead of 150.0

I am not very experienced with python and thus can only think of a brute force method to achieve this. Is there a built in functionality to do this?

Thanks

share|improve this question

2 Answers

up vote 4 down vote accepted
>>> "%.02f" % 150
'150.00'

Edit: Just tested, does work in 3.2 actually. It also works in older versions of Python, whilst the format methods do not - however, upgrading and using the format methods is preferred where possible. If you can't upgrade, use this.

share|improve this answer
This will also work in Python 3.x. It's not even deprecated, though the new format syntax is recommended. – Sven Marnach Jun 27 '11 at 10:55
Yeah, just tested 3.2 as I wasn't sure. I prefer this over the new format for numbers myself, as it just seems a lot cleaner. Although I suppose it's a habit I should drop.... Also, this method works on older versions of python, whilst the format does not - something which is useful on systems where you're stuck on Python2.4, for example – TyrantWave Jun 27 '11 at 10:56
As long as it's not deprecated and it fits your needs, I don't see too much of a reason to give up using the old syntax. – Sven Marnach Jun 27 '11 at 11:00
thanks, I think I am running on a pretty old version of python and this works! – moka Jun 27 '11 at 11:02
>>> "{0:.2f}".format(150)
'150.00'

or

>>> format(150, ".2f")
'150.00'

For an introduction to string formatting, see the Python tutorial and the links given there.

share|improve this answer
hmm i get the error "AttributeError: 'str' object has no attribute 'format'" do I need to import something special? thanks! – moka Jun 27 '11 at 10:59
1  
You seem to be using some rather old version of Python. This syntax was introduced in Python 2.6. – Sven Marnach Jun 27 '11 at 11:01
If you're on older versions of Python, there is no format method - such as 2.4. If you can't upgrade your python version, then the method I posted will work, although upgrading and using this is preferred. – TyrantWave Jun 27 '11 at 11:02
ah got it allready thanks, I think I am running on a version of python not supporting format. – moka Jun 27 '11 at 11:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.