标签:正数 als int class bsp 使用 not size print
两个变量的交换算法
代码如下:
a = 10000 b = 20000 temp = a a = b b = temp print(a) print(b)
序列赋值:
a,b = b,a
print(a)
print(b
is / is not运算符
作用:判断两个对象是否绑定同一个对象,如果是同一个对象返回True,否则返回False is not与is 作用相反。
语法:
x is y
x is not y
例子:
>>> a = b =1000
>>> a is b #True,因为a和b同时绑定10000
True
>>> a is not b
false
例子2:
>>> a =10000
>>> b = 10000
>>> a is b #false,因为a和b分别绑定不同了10000
false
>>> a is not b
true
小正数对象池:
CPython中证书 -5 至256
永远存在于小正数池中,不会释放并可重复使用。
>>> a = 5
>>> b = 5
>>> a is b
True
>>>
标签:正数 als int class bsp 使用 not size print
原文地址:https://www.cnblogs.com/Chamberlain/p/11161250.html