1. 程式人生 > >Python 運算符優先級 運算符

Python 運算符優先級 運算符

顯示 運算 字符串轉換 減法 異或 位翻轉 expr ssi arguments

Python 運算符優先級 運算符 描述
lambda Lambda表達式
or 布爾“或”
and 布爾“與”
not x 布爾“非”
in,not in 成員測試
is,is not 同一性測試
<,<=,>,>=,!=,== 比較
| 按位或
^ 按位異或
& 按位與
<<,>> 移位
+,- 加法與減法
*,/,% 乘法、除法與取余
+x,-x 正負號
~x 按位翻轉
** 指數
x.attribute 屬性參考
x[index] 下標
x[index:index] 尋址段
f(arguments...) 函數調用
(experession,...) 綁定或元組顯示
[expression,...] 列表顯示
{key:datum,...} 字典顯示
‘expression,...‘ 字符串轉換

Python 運算符優先級 運算符