检查 python int 是否太大而无法转换为 float
有没有办法检查长整型是否太大而无法在Python中转换为浮点型?
Is there any way to check if a long integer is too large to convert to a float in python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,如果您尝试将太大的整数转换为浮点数,则会引发异常。
Actually, if you try to convert an integer too big to a float, an exception will be raised.