python_utils/utils/number_utils.py
M. A. Reza 2fab4515bd update
2025-11-26 15:57:48 +03:30

4 lines
119 B
Python

def thousands_seperated_to_int(thousands_seperated: str) -> int:
return int(thousands_seperated.replace(',', ''))