1. 程式人生 > >Python運算符說明

Python運算符說明

expression 表達式 同一性 字符串 布爾

Python運算符說明
運算符說明
lambdalambda表達式
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,...‘字符串轉換


本文出自 “gswcfl” 博客,請務必保留此出處http://guoshiwei.blog.51cto.com/2802413/1932351

Python運算符說明