Python Integers

From NovaOrdis Knowledge Base
Revision as of 04:57, 18 June 2022 by Ovidiu (talk | contribs) (Created page with "=Internal= * Python Language =Overview= Whole numbers, expressed as numeric constants that do not contain a decimal point. <syntaxhighlight lang='...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

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

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