divison in python2 and python3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了divison in python2 and python3相关的知识,希望对你有一定的参考价值。

python2

>>> 3/2
1
>>> 3/2.0
1.5
>>> 4/2
2
>>> 4/2.0
2.0

>>> 3//2
1
>>> 3//2.0
1.0
>>> 4//2
2
>>> 4//2.0
2.0

python3

>>> 3/2
1.5
>>> 3/2.0
1.5
>>> 4/2
2.0
>>> 4/2.0
2.0

>>> 3//2
1
>>> 3//2.0
1.0
>>> 4//2
2
>>> 4//2.0
2.0

 

// means floor(xiaquzheng)

 

以上是关于divison in python2 and python3的主要内容,如果未能解决你的问题,请参考以下文章