What will be the value of the following Python expression?
print(float(4+int(2.39)%2))
Qus
निम्नलिखित पायथन एक्सप्रेशन की वैल्यू क्या होगी ?
print(float(4+int(2.39)%2))
A. 5.0 B. 5
C. 4.0 D. 4
Solution
C. 4.0
Explanation
The above expression is an example of explicit conversion. It is evaluated as: float(4+int(2.39)%2) = float(4+2%2) = float(4+0) = 4.0. Hence the result of this expression is 4.0.