[Type A] Python Revision Tour-1 – Chapter 1
Table of Contents
14. How many integer types are supported by Python? Name them.
Python supports two integer types:
int
: This represents signed integers with no maximum limit.bool
: This represents Boolean valuesTrue
andFalse
, which are a subclass from integers.