是否存在“不相等”;Python中的操作符?

你怎么说不相等呢?

就像

if hi == hi:
print "hi"
elif hi (does not equal) bye:
print "no hi"

是否存在与==等价的表示“不相等”的东西?

1742667 次浏览

使用!=。看到比较运算符。为了比较对象的标识,可以使用关键字is和它的反值is not

如。

1 == 1 #  -> True
1 != 1 #  -> False
[] is [] #-> False (distinct objects)
a = b = []; a is b # -> True (same object)

不等于!= (vs等于==)

你是在问这种事吗?

answer = 'hi'


if answer == 'hi':     # equal
print "hi"
elif answer != 'hi':   # not equal
print "no hi"

这个Python -基本操作符图表可能会有帮助。

!=(不等于)操作符,当两个值不同时返回True,但要注意类型,因为"1" != 1. c。这将总是返回True,而"1" == 1将总是返回False,因为类型不同。Python是动态的,但是是强类型的,而其他静态类型的语言会抱怨比较不同的类型。

还有else子句:

# This will always print either "hi" or "no hi" unless something unforeseen happens.
if hi == "hi":     # The variable hi is being compared to the string "hi", strings are immutable in Python, so you could use the 'is' operator.
print "hi"     # If indeed it is the string "hi" then print "hi"
else:              # hi and "hi" are not the same
print "no hi"

is操作符是对象标识操作符,用于检查两个对象实际上是否相同:

a = [1, 2]
b = [1, 2]
print a == b # This will print True since they have the same values
print a is b # This will print False since they are different objects.

鉴于其他人已经列出了大多数表示不平等的其他方式,我只想补充一句:

if not (1) == (1): # This will eval true then false
# (ie: 1 == 1 is true but the opposite(not) is false)
print "the world is ending" # This will only run on a if true
elif (1+1) != (2): #second if
print "the world is ending"
# This will only run if the first if is false and the second if is true
else: # this will only run if the if both if's are false
print "you are good for another day"

在这种情况下,它是简单的切换检查positive == (true)到negative,反之亦然…

你可以简单地做:

if hi == hi:
print "hi"
elif hi != bye:
print "no hi"

你可以同时使用!=<>

但是,请注意,在不推荐使用<>的地方,首选使用!=

使用!=<>。Both代表不平等。

比较运算符<>!=是同一运算符的交替拼写。!=是首选拼写;<>是过时的。(参考:Python语言参考)

在Python中有两个运算符用于“不等于”条件-

a.) !=如果两个操作数的值不相等,则条件为真。 (a != b)为真

如果两个操作数的值不相等,则条件为真。 (a & t;> b)是真的。这类似于!=运算符。

你可以用“is not”来表示“不相等”或“!=”。请看下面的例子:

a = 2
if a == 2:
print("true")
else:
print("false")

上面的代码将打印"true"作为在"if"条件前赋值的a = 2。现在请查看下面的“not equal”代码

a = 2
if a is not 3:
print("not equal")
else:
print("equal")

上面的代码将打印“not equal”作为前面指定的a = 2。

你可以使用!=操作符来检查是否不相等。

此外,在Python 2中有<>操作符,它曾经做同样的事情,但在Python 3中已经是弃用