Respuesta :

Answer:

< =10

Explanation:

It is certainly as above. And this comparison operator means that the number on the left-hand side can either be less than or equal to 10. And if this is true, the answer is true and the corresponding block of code is run. Or else, the other block of code is run. Like:

If a<=10:

print(a)

else:

print(a-1)

And this above code in python explains it all.

ACCESS MORE