3 lines
119 B
Python
3 lines
119 B
Python
from babel.numbers import format_currency
|
|
def toRupiah(money):
|
|
return format_currency(money, 'IDR', locale='id_ID') |