猿问
请问python的is和is not运算符是干什么用的
请问python的is和is not运算符是干什么用的
繁星点点滴滴
浏览 439
回答 6
6回答
临摹微笑
x in S 运算符用来检测对象 x 是否等于序列 S 中的任何项目;如果存在相等的项目,则返回 True;否则返回 False;x not in S 运算符与 not( x in S)是等价的;in 和 not in 都属于 python 序列运算中的成员测试运算符;
0
0
0
富国沪深
x is y比较xy是否为同一个对象。is not返回和is相反的布尔值
0
0
0
九州编程
用来判断对象的身份的 根据内置函数id123456789>>> a=1>>> b=1.0>>> a==bTrue>>> a is bFalse>>> id(a), id(b)(1639444272, 4434608)>>>
0
0
0
随时随地看视频
慕课网APP
相关分类
Python
我要回答