I have a float: 1.2333333
How do I change it into a two decimal number with a comma as a decimal point separator, eg 1,23?
|
|
|||||
|
|
|
To get two decimals, use
To get a comma, use
A second option would be to change the locale to some place which uses a comma and then use
|
||||
|
|
|
The locale module can help you with reading and writing numbers in the locale's format.
|
||
|
|
|
|
If you don't want to mess with the locale, you can of course do the formatting yourself. This might serve as a starting point:
Note that this will always truncate the fraction part (i.e. 1.04999 will print as 1,04). |
||
|
|