Python Assignment
Python Assignment
Numeric Types: (int) represents integer numbers without a fractional part. Integers
in Python 3 are of unlimited size, limited only by available
memory. Example: 5, -3, 42.
(float) Represents real (floating-point) numbers, i.e., numbers
that may have a fractional part. Example: 3.14, -0.001, 2.0.
(complex) Represents complex numbers, which are numbers with
a real and an imaginary part. Example: 3+4j, -2-3.5j