Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的代码是:
a=99999999999999995 b=long(a/5) c=a//5 print(b,c)
输出为:2e+16 19999999999999999
为什么不同的答案以及如何得到相同的答案(在python3中)