Python中is與 的使用區別詳解

2021-08-26 09:46:12 字數 3941 閱讀 1905

1.位址一樣,值也一樣。所以==成立。

st1 ='aaaaa'

st2 = 'bbbbb'

st3 = 'bbbbb'

st4 = st3

print(st1==st2,st2==st3,st3==st4)#false true true

print(id(st2)==id(st3),st2==st3) #true true

2.引用位址不一樣,但是只要值一樣即可==成立。

>>> val1 = 2000

>>> val2 = 2001

>>> val3 = val1 +1

>>> print(id(val3)==id(val2),val3==val2)

false true

3.對於類的例項比較

class student(object):

def __init__(self,name,age):

self.name = name

self.age = age

def run(self):

print("can run")

stu1 = student("tom",19)

stu2 = student("tom",19)

stu3 = stu2

print(id(stu1)==id(stu2),stu1 == stu2) #false false

#注意這裡stu1和stu2的值是不等的,雖然初始化建立物件格式一樣。

print(id(stu2)==id(stu3),stu2 == stu3) # true true

1.is成立的前提要是內容相同,記憶體中位址相同

st1 ='aaaaa'

st2 = 'bbbbb'

st3 = 'bbbbb'

st4 = st3

print(st1 is st2, st2 is st3,st3 is st4)#false true true

print(id(st1),id(st2),id(st3),id(st4))

#2439382008080 2439382008192 2439382008192 2439382008192

2.光值相同不同,記憶體位址也要相同,才會成立。

>>> a = 1

>>> a = 1000

>>> b = 1000

>>> print(id(a),id(b))

2625727620144 2625727619248

>>> print(a is b)

false

>>> print(a ==b)

true

>>>

3.類例項的比較,也要記憶體位址一致。

class student(object):

def __init__(self,name,age):

self.name = name

self.age = age

def run(self):

print("can run")

stu1 = student("tom",19)

stu2 = student("tom",19)

stu3 = stu2

print(id(stu1),id(stu2),id(stu3))

print(stu1 is stu2,stu2 is stu3)

****************************************=

2091922655776 2091922655888 2091922655888

false true

1.舉個例子,在python命令列模式下:為什麼同樣值a,b與c,d的結果卻不一樣呢?

>>> a = 1000

>>> b = 1000

>>> a is b

false

>>> c = 10

>>> d = 10

>>> c is d

true

注意,因為python對小整數在記憶體中直接建立了乙份,不會**,所有建立的小整數變數直接從物件池中引用他即可。

但是注意python僅僅對比較小的整數物件進行快取(範圍為範圍[-5, 256])快取起來,而並非是所有整數物件。

也就說只有在這個[-5,256]範圍內建立的變數值使用is比較時候才會成立。

>>> e ,d ,f ,g = -5 ,-5 ,-6 ,-6

>>> e is d

true

>>> f is g #超過-5的範圍不成立

>>> a ='abc'   #沒有空格內容一樣的兩個變數,在命令列模式下is 結果true

>>> b = 'abc'

>>> a ==b

true

>>> a is b

true

>>> c ='a b ' #有空格內容一樣的兩個變數,在命令列模式下is 結果false

>>> d= 'a b '

>>> c ==d

true

>>> c is d

false

>>> ls =[1,2,3]  ###值雖然一樣,但是兩個變數,記憶體中分配了兩個位址。

>>> ls1 =[1,2,3]

>>> ls == ls1

true

>>> ls is ls1

false

>>> t1 = (1,2,3) ##值雖然一樣,但是兩個變數,記憶體中分配了兩個位址。

>>> t2 = (1,2,3)

>>> t1 == t2

true

>>> t1 is t2

false

>>> d1 ={"1":2,"3": ##值雖然一樣,但是兩個變數,記憶體中分配了兩個位址。

>>> d2 ={"1":2,"3":

>>> d1 == d2

true

>>> d1 is d2

false

>>> id(d1),id(d2)

(5425744, 4537872)

>>> st1 ='abc' #注意這裡st1 和st2,值一樣,記憶體位址也一樣。因為字串的intern機制。

>>> st2 ='abc'

>>> st1 == st2

true

>>> st1 is st2

true

>>> f1 = 3.14 #值雖然一樣,但是兩個變數,記憶體中分配了兩個位址。

>>> f2 = 3.14

>>> f1 == f2

true

>>> f1 is f2

false

>>> a = 1000 #超出[-5,256]範圍值雖然一樣,但是兩個變數,記憶體中分配了兩個位址。

>>> b = 1000

>>> a is b ,a ==b

(false, true)

>>> a = 1 #值在小整數物件池範圍內,所以值一樣,記憶體位址一樣。

>>> b = 1

>>> a is b ,a ==b

(true, true)

>>>

>>> a =""

>>> a is none

false

>>> b ="aa"

>>> b is none

false

>>> b is not none

true

Python中zip 與zip 的使用與區別

最經看 利用python進行資料分析 的前幾章,遇到zip 函式與zip 函式經常是暈頭轉向,這裡參考了一些資料,結合自己的理解說兩句,歡迎交流指正 首先來看zip 該函式將列表 元組或其他序列的元素配對,新建乙個元組構成的列表。這句話好理解,即將兩個不同序列的元素以元組形式一一配對,舉個例子 a ...

python 中is與 的區別

is 比較的是兩個例項物件是不是完全相同,它們是不是同乙個物件,占用的記憶體位址是否相同。萊布尼茨說過 世界上沒有兩片完全相同的葉子 這個is正是這樣的比較,比較是不是同一片葉子 即比較的id是否相同,這id類似於人的身份證標識 比較的是兩個物件的內容是否相等,即記憶體位址可以不一樣,內容一樣就可以...

Python中的 與 的區別

2017年03月17日 11 19 53 誰主沉浮 data 閱讀數 36152 通常c c 中,算術運算子的計算結果是根據參與運算的兩邊的資料決定的,比如 6 3 2 6,3都是整數,那麼結果也就是整數2 6.0 3.0 2.0 6.0,3.0是浮點數,那麼結果也是浮點數2.0,跟精確的說,只要 ...