//和python中的int和/之间有什么区别?

时间:2020-01-14 16:29:42

标签: python python-3.x operators

例如,对于较小的数字,其基本相同

>>> 2*5//3
3
>>> int(2*5/3)
3

但是对于大量数字,

>>> int(3814986502092304*122/32)
14544636039226908
>>> 3814986502092304*122//32
14544636039226909

0 个答案:

没有答案