#python #python3 #pythoncourse
Type Conversion is the conversion of object from one data type to another data type. Implicit Type Conversion is automatically performed by the Python interpreter. Python avoids the loss of data in Implicit Type Conversion.
In computer science, type conversion or typecasting refers to changing an entity of one datatype into another. There are two types of conversion: implicit and explicit. Explicit type conversion can also be achieved with separately defined conversion routines such as an overloaded object constructor
------------------------------------------------------------------------------------------------------
There are three distinct numeric types: integers, floating point numbers, and complex numbers.
In Python, numeric data type represent the data which has numeric value. Numeric value can be integer, floating number or even complex numbers. These values are defined as int , float and complex class in Python. Integers – This value is represented by int class