标签: python python-2.7 operators
我试图了解一些来自互联网的python代码,我发现了这一行:
if len(u) <> 2: # some statements
和
if idPlayer <> 0: # some statements
试图google它,没有找到,甚至没有在python文档中......
条件符号“&lt;&gt;”是什么手段? 当上述条件为真时? 感谢
答案 0 :(得分:1)
它是!=的替代版本,检查不相等。