Skip to content
IohannesLong
Search
K
Main Navigation
机器人
python
c++
金融
linux
前端
中间件
java
求解
Appearance
Return to top
本页目录
== 和 is
2025年3月13日
root
py
a
=
'hello world'
b
=
'hello world'
a
==
b
#返回True
a
is
b
#返回False
is 判断是否是一个ID
== 判断内容是否相等