Python Integers: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Python Language =Overview= Whole numbers, expressed as numeric constants that do not contain a decimal point. <syntaxhighlight lang='...")
 
Line 8: Line 8:
<class 'int'>
<class 'int'>
</syntaxhighlight>
</syntaxhighlight>
=Bases=
<font color=darkkhaki>[[IPy]] Bases Page 26.</font>

Revision as of 05:01, 18 June 2022

Internal

Overview

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

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

Bases

IPy Bases Page 26.