python基礎語法2---運算子

純潔的程式碼發表於2020-03-11
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 有相同的標識")

更多學習資料可關注:itheimaGZ獲取



相關文章