0

我已customer_price存储为DECIMAL (8,2).

使用 Python,我将如何保留小数点后的两位数?

cursor.execute("SELECT customer_price FROM table")
customer_price = cursor.fetchone() # this will give me values such as 7 instead of 7.00
4

1 回答 1

0

这并不意味着 Python 会丢失小数点后的数字。如果您只需要以 2 位小数打印它们,那么您应该查看这个问题的答案。IE:

'%.2f' % your_number
于 2012-05-08T20:35:18.997 回答