What is the output of following code ?
print "8 >= 8"
2 Likes
8 >= 8
Reason — Since 8 >= 8 is enclosed in quotes, it is treated as a String and printed on the output terminal as it is.
Answered By
3 Likes
In the following code a = '5'. a is a …………… :
a = '5'
print 8 >= 8
What will be the output of following code ?
print(8 >= 8)
What will be the output of
print 3*2**2