我已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
这并不意味着 Python 会丢失小数点后的数字。如果您只需要以 2 位小数打印它们,那么您应该查看这个问题的答案。IE:
'%.2f' % your_number