a = 4
b = float(a)
c = 'float'
Now, the doubt comes when the target type is stored in another variable.
b = c(a)
This would raise error.
a = 4
b = float(a)
c = 'float'
Now, the doubt comes when the target type is stored in another variable.
b = c(a)
This would raise error.