what is the out put of print 8>=8 in python
Answers
Answered by
1
Answer:
First of all urs code is Wrong....
If we write:-
Input
Ptint="8"
Output will be
8
Answered by
1
Answer:
If you write it as:
print(8>=8)
It will give output as True.
'>=' represents greater than or equal to in python.
As 8 is equal to 8, it gives True..
Similar questions