4
Reply

What are the built-in types of python?

Dinesh Beniwal

Dinesh Beniwal

5y
2.5k
3
Reply

    integer
    float
    complex
    string

    1. Integer
    2. Float
    3. Complex
    4. String

    float, complex, str, bool

    built-in types are available in following categories: numerics, sequences, mappings, classes, instances and exceptions.
    Numeric Types includes: int, float, long, complex.
    Sequences: str, unicode, basestring, list etc.
    Mapping: dict.