Computer Science
What will be the value of y after following code fragment is executed ?
x = 10.0
y = (x < 100.0) and x >= 10
- 110
- True
- False
- Error.
Python Data Handling
25 Likes
Answer
True
Answered By
4 Likes
x = 10.0
y = (x < 100.0) and x >= 10
25 Likes
True
Answered By
4 Likes