有什么区别!=和<>?

时间:2013-12-26 22:44:23

标签: python syntax equality inequality

也许这是一个相当新手的问题,但我很好奇。我试过搜索它,但我想我没有正确搜索的正确术语。

!=<>之间的区别。

再次搜索“不平等”时,我找到一个讨论not ==!=,但没有关于<>的内容。

3 个答案:

答案 0 :(得分:8)

它们在Python 2中可以互换,但是<> is deprecated并且一直是removed in Python 3

Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32
>>> 1 <> 2
True
>>> 1 != 2
True

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:06:53) [MSC v.1600 64 bit (AMD64)] on win32
>>> 1 <> 2
  File "<stdin>", line 1
    1 <> 2
       ^
SyntaxError: invalid syntax
>>> 1 != 2
True

答案 1 :(得分:3)

在Python 2.x中,<>相当于!=,如documentation中所述:

  

表单&lt;&gt;和!=是等价的;为了与C一致,!=是首选;其中!=在下面提到&lt;&gt;也被接受。 &lt;&gt;拼写被认为是过时的。

在Python 3.x中,<>已被删除。同样,documentation说:

  

删除语法

     

...

     

删除&lt;&gt; (使用!=代替)。

答案 2 :(得分:1)

此外,如果您想在Python 3.X中使用<>,可以从 future 模块中导入。

Python 3.3.2
>>> from __future__ import barry_as_FLUFL
>>> 1<>1
False