标签: python
让我知道如何在Python中显示以下格式
1234567 => 12,34,567.00
我尝试了以下"{:,}".format(amt) 但它显示为1,234,567.00
"{:,}".format(amt)
1,234,567.00