!= 運算子用於檢查被比較的兩個物件的值是否相等。另一方面,“is not” 運算子用於檢查被比較的兩個物件是否指向不同的參考。如果被比較的物件不指向相同的引用,則 「is not」 運算子傳回 true,否則傳回 false。在本文中,我們將討論如何使用 != 和 “is not” 運算符,以及它們之間的差異。
!= 運算子 |
「不是」運算子 |
---|---|
!= 運算子僅比較所比較物件的值。 |
「is not」運算子用於比較物件是否指向相同的記憶體位置。 |
如果兩個物件的值不同,則傳回 True,否則傳回 False。 |
如果物件沒有指向相同記憶體位置,則傳回 true,否則傳回 false。 |
!= 運算子的語法是 object1 != object2 |
「is not」運算子的語法是 object1 is not object2 |
在下面的範例中,我們藉助! =運算子和「不是」運算子比較具有不同資料類型(例如整數、字串和清單)的兩個物件值,以查看兩者之間的差異都是運營商。
# python code to differentiate between != and “is not” operator. # comparing object with integer datatype a = 10 b = 10 print("comparison with != operator",a != b) print("comparison with is not operator ", a is not b) print(id(a), id(b)) # comparing objects with string data type c = "Python" d = "Python" print("comparison with != operator",c != d) print("comparison with is not operator", c is not d) print(id(c), id(d)) # comparing list e = [ 1, 2, 3, 4] f=[ 1, 2, 3, 4] print("comparison with != operator",e != f) print("comparison with is not operator", e is not f) print(id(e), id(f))
comparison with != operator False comparison with is not operator False 139927053992464 139927053992464 comparison with != operator False comparison with is not operator False 139927052823408 139927052823408 comparison with != operator False comparison with is not operator True 139927054711552 139927052867136
在本文中,我們討論了 != 運算子和「is not」運算子之間的差異,以及如何使用這兩個比較運算子來比較兩個物件。 != 運算子僅比較值,而「is not」運算子檢查所比較物件的記憶體位置。在比較兩個物件時,這兩個運算子都可以在不同的場景中使用。
以上是在Python中,"!="和"is not"運算子之間的差異是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!