WHat is a good way to format a python decimal like this way?
1.00 --> '1'
1.20 --> '1.2'
1.23 --> '1.23'
1.234 --> '1.23'
1.2345 --> '1.23'
|
|
If you have Python 2.6 or better, use
For Python 2.5 or worse:
Explanation:
Everything after the colon (:) specifies the
For example:
yields
|
||||
|
|
|
Here's a function that will do the trick:
And here are your examples:
Edit: From looking at other people's answers and experimenting, I found that g does all of the stripping stuff for you. So,
works splendidly too and is slightly different from what other people are suggesting (using '{0:.3}'.format() stuff). I guess take your pick. |
|||||
|
|
Only first part of Justin's answer is correct. Using "%.3g" will not work for all cases as .3 is not the precision, but total number of digits. Try it for numbers like 1000.123 and it breaks. So, I would use what Justin is suggesting:
|
|||
|
|
|
Step 1: round the number, or simply trim it to two decimal places. Step 2: convert it to a string. Step 3: remove the trailing zero that it could have (if it were '1.0' or '1.20', for instance). Step 4: remove the trailing decimal point that it could have (if it were '1.' after removing a trailing zero, for instance). Here it is:
|
|||||||
|
|
Just use Python's standard string formatting methods:
If you are using a Python version under 2.6, use
|
||||
|