Is there an operation for not less than or not greater than in python?

百般思念 提交于 2020-01-11 07:29:39

问题


Consider a following snippet:

a = 0
if a == 0 or a > 0:
    print(a)

Essentially, I want to do something when a is not negative. If instead of this, I had wanted to do something when a is not 0, I would have simply written:

if a != 0 :

In the same spirit, I tried :

if a !< 0 :

assuming the consistency of the Python where user starts guessing the correct implementations once he/she gets used to the language. I was surprised to see that this particular operation does not exist in Python! My question is that why such simple thing has not been implemented in Python and is there another way in which it has been implemented. Any feedback is highly appreciated. Thank you


回答1:


Instead of a == 0 or a > 0 you could just use a >= 0.

https://docs.python.org/library/stdtypes.html#comparisons




回答2:


I was surprised to see that this particular operation does not exist in Python!

I'm not familiar with any language that does have this operator. It is simply not needed.

As for your snippets:

if a == 0 or a > 0

It is exactly the same as if a >= 0




回答3:


You can use the equal or greater than operator:

if a >= 0:
    print(a)



回答4:


Well python !> doesn't work.But

if not a > 70:

    print(' The number is Not bigger than 70')

else:
    print(' The number is DEFINITELY bigger than 70')

this surprisingly works



来源:https://stackoverflow.com/questions/37862030/is-there-an-operation-for-not-less-than-or-not-greater-than-in-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!