KnowledgeBoat Logo

Computer Science

What will the following code result as?

import math
x = 100
print ( x > 0 and math.sqrt( x ) )
  1. True
  2. 1
  3. 10
  4. 10.0

Python Data Handling

18 Likes

Answer

10.0

Answered By

5 Likes


Related Questions