先按運算子類別排序(一、二、…),同一類別內按具體運算子排序(1、2、…)1、冪運算:
**
2、乘、除、取整、取餘:*
,/
,/./
,%
3、加、減:+
,-
1、左移位、右移位:>>
,<<
2、按位與:&
3、按位或:|
1、>
,<
,>=
,<=
,==
,!=
1、and
2、or
3、not
4、in
5、not in
1、=
補充:關於布林運算子中not
,in
,not in
的示例
#not運算子
flag1 =
true
flag2 =
false
print
('flag1='
,flag1,
'\t'
,'flag2='
,flag2)
print
('not flag1='
,not flag1,
'\t'
,'not flag2='
,not flag2)
print
('*****我==是==分==界*****'
)#in 和 not in 運算子
string =
'helloworld'
print
('hello'
in string)
print
('hello'
notin string)
print
('hallo'
in string)
print
('hallo'
notin string)
運算子優先順序 Python 運算子優先順序
python 運算子優先順序 運算子描述 lambda lambda表示式 or布林 或 and布林 與 not x 布林 非 in,not in 成員測試 is,is not 同一性測試 比較 按位或 按位異或 按位與 移位 加法與減法 乘法 除法與取餘 x,x 正負號 x 按位翻轉 指數 x.a...
運算子優先順序 C 運算子優先順序
c 運算子優先順序 優先順序運算子 描述方向1 scope resolution 範圍解析 left to right 2 suffix postfix increment and decrement 字首 字尾遞增和遞減 function call 函式呼叫 array subscripting ...
運算子優先順序 PHP運算子優先順序
php運算子優先順序 結合方向 運算子附加資訊 非結合clone new clone 和 new左 array 非結合 遞增 遞減運算子 非結合 int float string array object bool 型別非結合 instanceof 型別右結合 邏輯操作符 左 算術運算子 左 算術運...