How do I round a decimal to a particular number of decimal places using the Python 3.0 format function?
|
|
|||
|
|
|
Here's a typical, useful example...:
the nested Even better...:
...instead of the murky "argument numbers" such as 0 and 1 above, you can choose to use shiny-clear argument names, and pass the corresponding values as keyword (aka "named") arguments to |
||||||
|
|
|
In Python 3.x a format string contains replacement fields indicated by braces thus::
The format spec has the general layout:
So, for example leaving out all else but width, precision and type code, a decimal or floating point number could be formatted as:
This would print as:
|
|||
|
|
|
|
To round x to n decimal places use:
Where n is substituted, f tells us that the variable is treated as a float and the 0 indicates that the 0th argument of format, x, is used |
|||
|
