Computer Science, asked by haldarkumar35, 6 months ago

what is the out put of print 8>=8 in python​

Answers

Answered by Anonymous
1

Answer:

First of all urs code is Wrong....

If we write:-

Input

Ptint="8"

Output will be

8

Answered by gaganadithyareddy9
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