您好,登錄后才能下訂單哦!
簡單的運算
>>> 1+1
2
>>> 2-1
1
>>> 2*3
6
>>> 2/1
2.0
>>> 5%4 <====返回除法的余數
1
>>> 2**2 <====冪次方
4
>>> 5//2 <====關于取商,只取整數部分
2
>>> 5==5
True
>>> 5!=4 <====關于不等于
True
>>> 5>4
True
>>> 4<5
True
>>> 5>=5
True
>>> 4<=4
True
關于二進制運算
運算符 描述 實例
& 按位與運算符 10&50得出結果為2 假如A為00001010 B為00110010 就是說A和B中相同的位都為真才為真就是1
| 按位或運算符 10|50得出結果為58 假如A為00001010 B為00110010 就是說A和B中相同的位只要有一位為真才為真就是1
^ 按位異或運算符 10^50得出結果為1=56 假如A為00001010 B為00110010 就是說A和B中相同的位只要有一位為真才為真就是1,都為真的話就是假代表0,都為假的話就是假代表0
>> 右移動運算符 假如A為00001010按照右移一位的話結果就是00000101代表5
<< 左移動運算符 假如A為00001010按照左移一位的話結果就是00010100代表5
邏輯運算符
運算符 描述
and 布爾"與",如果x為false,x and y返回false
or 布爾"或",如果x為true,它就返回true
not 布爾"非",如果x為true,它就返回false
成員運算符
運算符
in
not in
舉例
the number 1:
name=['alex','rain'] if 'jack' in name: print("pengchun is handsome") else: print("pengchun is very handsome")
得出結果pengchun is very handsome
the number 2:
name=['alex','rain'] if 'alex' in name: print("pengchun is handsome") else: print("pengchun is very handsome")
得出結果pengchun is handsome
身份運算符
is
is not
舉例:
the number 1
if type(3) is int: print("pengchun is handsome") 得出結果pengchun is handsome the number 2 if type(3) is not list: print("pengchun is handsome") 得出結果pengchun is handsome
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。