一日一技:Python裏面的//並非作了除法之後取整python
在Python 3裏面,咱們作除法的時候會遇到 a/b 和 a//b兩種寫法:ide
>>> 10 / 3 3.3333333333333335 >>> 10 // 3 >>> 3
因而可能有人會認爲, a//b至關於 int(a/b)。測試
但若是再進一步測試,你會發現:code
>>> int(-10/3) -3 >>> -10 // 3 >>> -4
看到這裏,可能有人意識到, //彷佛是向下取整的意思,例如 -3.33向下取整是 -4。blog
那麼咱們再試一試向下取整:ci
>>> import math >>> math.floor(-10/3) -4 >>> -10//3 -4
看起來已是這麼一回事了。可是若是你把其中一個數字換成浮點數,就會發現事情並無這麼簡單:input
import math >>> math.floor(-10/3.0) -4 >>> -10//3.0 -4.0
當有一個數爲浮點數的時候, //的結果也是浮點數,可是 math.floor的結果是整數。產品
這個緣由能夠參看Python PEP-238的規範:ttps://www.python.org/dev/peps/pep-0238/#semantics-of-floor-divisionit
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.io
結果的類型將會是 a和 b的公共類型。若是 a是整數, b是浮點數,那麼首先他們會被轉換爲公共類型,也就是浮點數(由於整數轉成浮點數不過是末尾加上 .0,不會丟失信息,可是浮點數轉換爲整數,可能會把小數部分丟失。因此整數何浮點數的公共類型爲浮點數),而後兩個浮點數作 //之後的結果仍是浮點數。
kingname攢錢給產品經理買房。