标签: python math
我应该如何期望Python处理这样的简单浮点计算:
float(6/4)
shell中的输出是
1.0
我希望这是1.5,所以给出了什么?
答案 0 :(得分:1)
Python在这里使用整数除法。