标签: python python-3.x
我需要知道Python中<>的含义。在Visual Basic中,这意味着如果我们有a<>0,则a不等于零。
<>
a<>0
a
答案 0 :(得分:6)
在Python 2中它是相同的,它意味着“不相等”。见documentation here。
xcodebuild也可以写成!=,但这是一种过时的用法,仅用于向后兼容。新代码应始终使用<>。
xcodebuild
!=
Python 3没有!=运算符。