What will be the output of following code ?
print(8 >= 8)
1 Like
True
Reason — The given expression (8 >= 8) results in true as 8 is equal to 8. Thus, 'true' is printed on the output terminal.
(8 >= 8)
Answered By
3 Likes
What is the output of following code ?
print 8 >= 8
print "8 >= 8"
What will be the output of
print 3*2**2
print (3*2)**2