Here is the code ...
a=4 b=8.0 if a and a >0: a=a*int(b) print \"Value:\",a
The desired o/p should be 32. i am also getting the sam
That looks like a is a string, and not an integer. Try this:
a
a = int(a) * int(b)
Hope that helps