dzgui/dzgui/util/localize.py
2026-05-18 00:22:18 +09:00

15 lines
287 B
Python

import locale
def number(num: int | float) -> str:
spec = ""
if type(num) is int:
spec = "%d"
if type(num) is float:
spec = "%.2f"
return locale.format_string(spec, num, grouping=True)
def set_locale() -> None:
locale.setlocale(locale.LC_ALL, "")