python中除法运算符是平均成绩不让用除_Python 3 int除法运算符返回浮点数吗?

In one of my assignments I came across a weird implementation, and I was curious if it's a bug or the designed behavior.

In Python 3, division by / returns a floating point number, and // means integer division and should return an integer. I've discovered though that if either of the values is a float when doing integer division, it will return a float.

Example:

# These all work as expected

10 / 2

-> 5.0

11 / 2

-> 5.5

10 // 2

-> 5

11 // 2

-> 5

# Here things start to get weird

10.0 // 2

-> 5.0

10 // 2.0

-> 5.0

11.0 // 2

-> 5.0

Is this supposed to behave this way? If so, why does it behave this way?

解决方案

From PEP-238, which introduced the new division (emphasis mine):

Semantics of Floor Division

Floor division will be implemented in all the Python numeric types,

and will have the semantics of:

a // b == floor(a/b)

except that the result type will be the common type into which a and

b are coerced before the operation.

Specifically, if a and b are of the same type, a//b will be of that type too. If the inputs are of different types, they are first

coerced to a common type using the same rules used for all other

arithmetic operators.

In particular, if a and b are both ints or longs, the result has the

same type and value as for classic division on these types (including

the case of mixed input types; int//long and long//int will both

return a long).

For floating point inputs, the result is a float. For example:

3.5//2.0 == 1.0

For complex numbers, // raises an exception, since floor() of a

complex number is not allowed.

For user-defined classes and extension types, all semantics are up to

the implementation of the class or type.

So yes, it is supposed to behave that way. "// means integer division and should return an integer" - not quite, it means floor division and should return something equal to an integer (you'd always expect (a // b).is_integer() to be true where either operand is a float).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值