4 lines
119 B
Python
4 lines
119 B
Python
def thousands_seperated_to_int(thousands_seperated: str) -> int:
|
|
return int(thousands_seperated.replace(',', ''))
|
|
|