标签: python-3.x
是Python的新手,并尝试了以下方法,并且有效
a = 5 a is 5 //True
但是,这不起作用
arr = [1,2,3] arr is [1,2,3] //False
为什么会这样?