BUILT-IN TYPES IN PYTHON
Here is the list of most commonly used built-in types that Python supports: Immutable Built-in Datatypes NUMBERS : Python supports integers, floats and complex numbers. An integer is a number without decimal point for example 5, 6, 10 etc. A float is a number with decimal point for example 6.7, 6.0, 10.99 etc. A complex number has a real and imaginary … Continue reading BUILT-IN TYPES IN PYTHON
