What is type conversion in Python
Python provides you with a much needed functionality of converting one form of data type into the needed one and this is known as type conversion.
Type Conversion is classified into types:
1.Implicit Type Conversion: In this form of Type conversion python interpreter helps in automatically converting the data type into another data type without any User involvement.
2.Explicit Type Conversion: In this form of Type conversion the data type inn changed into a required type by the user.