号码相关查询

发布于 2024-12-10 20:13:15 字数 207 浏览 0 评论 0原文

任何数字后面的“L”是什么意思(例如153L=?,648L=?)

我得到的值是2432902008176640000L在 python2.7 解释器中输入 math.factorial(20) 。

可能有些人觉得这是一个愚蠢的问题,但我对这个“L”的事情一无所知。所以请帮助我增加我的知识。

What's the meaning of "L" behind any number(e.g 153L=?,648L=?)

I am getting the value 2432902008176640000L while i am typing math.factorial(20) in python2.7 interpreter.

May be some ppl find it a silly question but i dont know anything about this "L" thing.So please help me to increase my knowledge.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

毅然前行 2024-12-17 20:13:15

这意味着该数字是 long Integer,并且可以存储更大的数字。

It means that the number is a long Integer, and can store larger numbers.

断肠人 2024-12-17 20:13:15

它是一个Long 整数。有关更多信息,请参阅 Python 文档:5.4。数字类型

It 's a Long integer. More about it, in the Python docs: 5.4. Numeric Types

兮颜 2024-12-17 20:13:15

这意味着该数字是Long,这意味着它使用更多字节存储并且可以包含更大的值

That means the number is a Long, meaning it is stored using more bytes and can contain larger values

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文