2 lines
83 B
Python
2 lines
83 B
Python
def format_vnd(amount: int) -> str:
|
|
return f"{amount:,.0f}đ".replace(",", ".") |
def format_vnd(amount: int) -> str:
|
|
return f"{amount:,.0f}đ".replace(",", ".") |