python入門(四)

來源:互聯網
上載者:User

標籤:

python運算子與運算子優先順序

1.運算子

  1. ** 冪運算
  2. // 求商的整數部分
  3. ~ 取反
 1 #coding=utf-8 2 #運算子 3 a=10%4 4 b=10//4 5 print a 6 print b 7 #按為與“&”,按位或“|”,按位異或“^” 8 c=7&18 9 print c10 #7->0000011111 #18->00010010 12 d=7|1813 print d14 e=7^1815 print e16 #按位翻轉“~”,(~18+1)17 f=~1818 print f19 #"<<"左移,左移n個單位相當於乘2^N20 g=2<<321 print g22 #">>"右移,除以2^n23 h=18>>224 print h

2.運算子優先順序

  1. 函數調用,定址,下標
  2. 冪運算**
  3. 翻轉運算~
  4. 加號或減號
  5. *、/、%
  6. +、-
  7. <<、>>
  8. &、^、|
  9. 比較子
  10. 邏輯的not、and/or
  11. lambda運算式

2016-04-13  10:38:03 

python入門(四)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.