Python学习笔记二(变量&运算符)

2018-02-24  本文已影响9人  stoolman

值类型&引用类型

值类型(不可变):int、str、tuple

引用类型(可变):list、set、dict

exa1: a = 3;id(a);a = 4;id(a)
exa2: str = "abc"; str[0] = 'l';

运算符

算数运算符

赋值运算符

=、+=、-=、=、/=、%=、*=、//=

比较(关系)运算符

==、!=、>、<、<=、>=

逻辑运算符

and、or、not

成员运算符

in、not in

身份运算符

is、is not

id(a) = id(b) 那么 a is b为true
对象三大特征:id(身份)、value(值)、类型(type)

is,==,isinstance()

位运算符

&、|、^、~、<<、>>

上一篇下一篇

猜你喜欢

热点阅读