阅读量:0
round()
函数在 Python 中用于四舍五入到最接近的整数。要将其用于货币数据的格式化,可以结合字符串格式化功能。
以下是一个示例,展示如何使用 round()
函数和字符串格式化来格式化货币数据:
# 示例货币数据 amount = 1234.5678 # 使用 round() 函数四舍五入到最接近的整数 rounded_amount = round(amount, 2) # 保留两位小数 # 使用字符串格式化功能将货币数据格式化为美元格式 formatted_amount = "${:,.2f}".format(rounded_amount) print(formatted_amount)
输出:
$1,234.57
在这个示例中,我们首先使用 round()
函数将金额四舍五入到最接近的整数(保留两位小数)。然后,我们使用字符串格式化功能(str.format()
)将金额格式化为美元格式。最后,我们打印格式化后的金额。