其他分享
首页 > 其他分享> > 练习六十六:操作符练习

练习六十六:操作符练习

作者:互联网

判断以下代码的输出,并解释

代码:

def div1(x,y):
    print("%s/%s = %s"%(x,y,x/y))
def div2(x,y):
    print("%s//%s = %s"%(x,y,x//y))
div1(5,2)
div2(5,2)
div1(5.0,2)
div2(5.0,2)

python3执行结果:

5/2 = 2.5
5//2 = 2
5.0/2 = 2.5
5.0//2 = 2.0
注意:python2和python3的执行结果会有所不同,但是python2想要达到python3相同结果,可导入模块:
from __future__ import division

标签:5.0,__,练习,2.5,操作符,python3,六十六,div2,div1
来源: https://www.cnblogs.com/pinpin/p/10392521.html