Python Integers: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
Line 1: Line 1:
=Internal=
=Internal=
* [[Python_Language#Integers|Python Language]]
* [[Python_Language#Integers|Python Language]]
=TODO=
<font color=darkkhaki>
* TO PROCESS [[IPy]] [[Python_Integers#Bases]]
</font>
=Overview=
=Overview=
Whole numbers, expressed as numeric constants that do not contain a decimal point.
Whole numbers, expressed as numeric constants that do not contain a decimal point.
Line 9: Line 14:
</syntaxhighlight>
</syntaxhighlight>


In Python 2, an integer was limited to 32 bits. In Python 3, integers can be any size.
In Python 2, an integer was limited to 32 bits. In Python 3, integers can be any size:
 
<syntaxhighlight lang='py'>
>>> googol = 10**100
>>> googol
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
</syntaxhighlight>


=Bases=
=Bases=
<font color=darkkhaki>[[IPy]] Bases Page 26.</font>
<font color=darkkhaki>[[IPy]] Bases Page 26.</font>
=Organizatorium=
=Organizatorium=

Revision as of 01:27, 24 June 2022

Internal

TODO

Overview

Whole numbers, expressed as numeric constants that do not contain a decimal point.

x = -20
type(x)
<class 'int'>

In Python 2, an integer was limited to 32 bits. In Python 3, integers can be any size:

>>> googol = 10**100
>>> googol
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Bases

IPy Bases Page 26.

Organizatorium