type conversion of string to python code example

Example 1: typecasting inpython

# Converting data type of one variable to diffrent data type is called typecasting
>>> string = '123'
>>> type(string)
<class 'str'>
>>> integer = int(string) # Converting str() to int() data type.
>>> type(integer)
<class 'int'>
>>> float_number = float(integer) # Converting int() to float() data type.
>>> type(float_number)
<class 'float'>
>>> string, integer, float_number
('123', 123, 123.0) # str, int, float

Example 2: how to tyoecast in python

example = 1.3234325
print(type(example))