[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:

  1. int: This represents signed integers with no maximum limit.
  2. bool: This represents Boolean values True and False, which are a subclass from integers.

Leave a Reply

Your email address will not be published. Required fields are marked *