Computer Science
What will the following code result as?
import math
x = 100
print ( x > 0 and math.sqrt( x ) )
- True
- 1
- 10
- 10.0
Python Data Handling
18 Likes
Answer
10.0
Answered By
5 Likes
import math
x = 100
print ( x > 0 and math.sqrt( x ) )
18 Likes
10.0
Answered By
5 Likes