首页 > 编程语言 > 详细

Python strange questions list

时间:2015-06-20 15:30:41      阅读:166      评论:0      收藏:0      [点我收藏+]

sys.setrecursionlimit(1<<64)

Line 3: OverflowError: Python int too large to convert to C long

max: 2**64-1, (1<<64) - 1

 

sys.setrecursionlimit(1<<31)

Line 3: OverflowError: signed integer is greater than maximum 

signed integer should be -1<<31 ~ (1<<31) - 1, -2**32 ~ 2**32

Python strange questions list

原文:http://www.cnblogs.com/huashiyiqike/p/4590528.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!