python:operator“<>”在条件陈述中

时间:2016-08-10 20:20:32

标签: python python-2.7 operators

我试图了解一些来自互联网的python代码,我发现了这一行:

 if len(u) <> 2:
        # some statements

  if idPlayer <> 0:
        # some statements

试图google它,没有找到,甚至没有在python文档中......

条件符号“&lt;&gt;”是什么手段? 当上述条件为真时? 感谢

1 个答案:

答案 0 :(得分:1)

它是!=的替代版本,检查不相等。