This question already has answers here:

What does `<>` mean in Python?
(5个答案)
所以,我正在为自己制作一个python备忘单,当我开始介绍比较运算符时,我注意到了这两个:
a = 1
b = 2

if a != b:
 print("Dunno")

if a <> b:
 print("Dunno")

我正在使用Python2.7,想知道这两个操作符之间是否有区别?

最佳答案

the documentation所述,它们是相同的<>已弃用,并已在Python3中删除,因此应使用!=

10-02 23:11