python2、3中整数相除结果不一样怎么处理?
巴扎黑
巴扎黑 2017-04-17 17:35:09
0
2
389

在python2中,两个整数相除

x = long(325467875031459788937436)
x /= 30

得到的结果是
10848929167715326297914L

而在python3中,两个整数使用除法

x = 325467875031459788937436
x /= 30

得到的结果会自动转换成浮点型
1.0848929167715326e+22
如果这时候时候int(x),得到的结果是10848929167715325706240,跟python2里的结果后面几位不一样了

怎么转换才能使得python3里相除的结果跟python2里的一样呢,求各位大神指点,谢谢

巴扎黑
巴扎黑

reply all(2)
大家讲道理

There is a // operator in python3. Let’s see if this can be solved?

大家讲道理
//
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!