Computer Applications
What will be the output of following code ?
print(8 >= 8)
- 8 >= 8
- False
- True
- Error
Python Funda
1 Like
Answer
True
Reason — The given expression (8 >= 8) results in true as 8 is equal to 8. Thus, 'true' is printed on the output terminal.
Answered By
1 Like