Python算术运算符
+
-
*
/
**
//
%
Python比较运算符
==
!=
<
>
<=
>=
Python赋值运算符
=
+=
-=
*=
/=
%=
//=
Python位运算符
用到的时候再了解……
Python逻辑运算符
and
or
not
Python成员运算符
in
not in
Python身份运算符
is
is not
a = 20
b = 30
if ( a is b ):
print ("3 - a 和 b 有相同的标识")
else:
print ("3 - a 和 b 没有相同的标识")
if ( a is not b ):
print ("4 - a 和 b 没有相同的标识")
else:
print ("4 - a 和 b 有相同的标识")
|
|