mirror of
https://github.com/python/cpython.git
synced 2026-01-01 13:03:56 +00:00
6 lines
143 B
Python
6 lines
143 B
Python
|
|
import locale
|
||
|
|
|
||
|
|
|
||
|
|
def fmt(value: int | float, decimals: int = 1) -> str:
|
||
|
|
return locale.format_string(f'%.{decimals}f', value, grouping=True)
|