convert in python code example
Example 1: how to convert types of variablesin python
int(anyData)
str(anyData)
ord(chr)
hex(int)
oct(int)
float(anyData)
tuple()
set()
list()
dict()
complex(real,imag)
Example 2: python data type conversion
equationStrToInt = '8 * 8'
eval(equationStrToInt)
type(equationStrToInt)
print(equationStrToInt)
strToList = 'GREPPER'
list(strToList)
type(strToList)
print(strToList)
Example 3: Python Practice Problems based on type casting
num_int = 123
num_str = "456"
print("Data type of num_int:",type(num_int))
print("Data type of num_str before Type Casting:",type(num_str))
num_str = int(num_str)
print("Data type of num_str after Type Casting:",type(num_str))
num_sum = num_int + num_str
print("Sum of num_int and num_str:",num_sum)
print("Data type of the sum:",type(num_sum))
Example 4: how to tyoecast in python
example = 1.3234325
print(type(example))