mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
5 lines
143 B
Python
5 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)
|