身份运算符 搜索文章-尤尤'blog
搜索[身份运算符],共找到2个文章
Python字符串的创建和驻留机制详解-尤尤'blog

Python字符串的创建和驻留机制详解

字符串 字符串是python中最常用的数据类型,一般用单引号或者双引号来创建字符串(必须成对)。字符串是不可变序列。 a = 'hello' b = 'python' print(type(a)) #<class 'str'> print(type(b...
Python常用运算符及优先级顺序(超详细)-尤尤'blog

Python常用运算符及优先级顺序(超详细)

python常用运算符 算术运算符:+、-、*、/、%、**、//赋值运算符:=、+=、-=、*=、/=、%=、//=、**=、&=、|=、^=、>>=、<<=比较运算符:==、!=、>、<、>=、<=布尔...