码迷,mamicode.com
首页 > 编程语言 > 详细

divison in python2 and python3

时间:2018-08-15 20:28:54      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:color   1.5   col   python   floor   iso   code   and   viso   

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

标签:color   1.5   col   python   floor   iso   code   and   viso   

原文地址:https://www.cnblogs.com/zealousness/p/9483588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!