初步認識Python中的列表與位元運算符

來源:互聯網
上載者:User
Python列表
List(列表) 是 Python 中使用最頻繁的資料類型。
列表可以完成大多數集合類的資料結構實現。它支援字元,數字,字串甚至可以包含列表(所謂嵌套)。
列表用[ ]標識。是python最通用的複合資料型別。看這段代碼就明白。
列表中的值得分割也可以用到變數[頭下標:尾下標],就可以截取相應的列表,從左至右索引預設0開始的,從右至左索引預設-1開始,下標可以為空白表示取到頭或尾。
加號(+)是列表串連運算子,星號(*)是重複操作。如下執行個體:

#!/usr/bin/python# -*- coding: UTF-8 -*-list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]tinylist = [123, 'john']print list # 輸出完整列表print list[0] # 輸出資料行表的第一個元素print list[1:3] # 輸出第二個至第三個的元素 print list[2:] # 輸出從第三個開始至列表末尾的所有元素print tinylist * 2 # 輸出資料行表兩次print list + tinylist # 列印組合的列表

以上執行個體輸出結果:

['abcd', 786, 2.23, 'john', 70.2]abcd[786, 2.23][2.23, 'john', 70.2][123, 'john', 123, 'john']['abcd', 786, 2.23, 'john', 70.2, 123, 'john']

Python位元運算符
按位元運算符是把數字看作二進位來進行計算的。Python中的按位元運算法則如下:

以下執行個體示範了Python所有位元運算符的操作:

#!/usr/bin/pythona = 60      # 60 = 0011 1100 b = 13      # 13 = 0000 1101 c = 0c = a & b;    # 12 = 0000 1100print "Line 1 - Value of c is ", cc = a | b;    # 61 = 0011 1101 print "Line 2 - Value of c is ", cc = a ^ b;    # 49 = 0011 0001print "Line 3 - Value of c is ", cc = ~a;      # -61 = 1100 0011print "Line 4 - Value of c is ", cc = a << 2;    # 240 = 1111 0000print "Line 5 - Value of c is ", cc = a >> 2;    # 15 = 0000 1111print "Line 6 - Value of c is ", c

以上執行個體輸出結果:

Line 1 - Value of c is 12Line 2 - Value of c is 61Line 3 - Value of c is 49Line 4 - Value of c is -61Line 5 - Value of c is 240Line 6 - Value of c is 15
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.