Answers for "type casting and type conversion in python"

1

python type casting

var_as_num = 10
var_as_str = str(var_as_num)
Posted by: Guest on April-22-2021
0

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))
Posted by: Guest on September-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language