在Python中,'!='和'is not'运算符之间的区别是什么?

王林
发布: 2023-09-11 18:45:02
转载
1181 人浏览过

在Python中,

!= 操作符用于检查被比较的两个对象的值是否相等。另一方面,“is not”操作符用于检查被比较的两个对象是否指向不同的引用。如果被比较的对象不指向相同的引用,则“is not”操作符返回true,否则返回false。在本文中,我们将讨论如何使用!=“is not”操作符,以及它们之间的区别。

!= 操作符

“不是”运算符

!= 运算符仅比较所比较对象的值。

“is not”运算符用于比较对象是否指向相同的内存位置。

如果两个对象的值不同,则返回True,否则返回False

如果对象没有指向同一内存位置,则返回 true,否则返回 false。

!= 运算符的语法是object1 != object2

“is not”运算符的语法是object1 is not object2

Example

的中文翻译为:

示例

在下面的示例中,我们借助!=运算符和“不是”运算符比较具有不同数据类型(例如整数、字符串和列表)的两个对象值,以查看两者之间的差异都是运营商。

# 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中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!