Python 身份运算符
Python 身份运算符
身份运算符用于比较对象,不是比较它们是否相等,而是比较它们是否实际上是同一个对象,具有相同的内存位置。
运算符 | 描述 | 示例 | 尝试一下 |
---|---|---|---|
is | 如果两个变量是同一个对象,则返回 True | x is y | 尝试一下 » |
is not | 如果两个变量不是同一个对象,则返回 True | x is not y | 尝试一下 » |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]