python-序列學習筆記

來源:互聯網
上載者:User

標籤:

 1 #列表,元組,字串都是序列,序列常用操作為分區  2 item = (‘apple‘, ‘mango‘, ‘carrot‘, ‘banana‘) #元組 3 list = [‘apple‘, ‘mango‘, ‘carrot‘, ‘banana‘] #列表 4  5 # Indexing or ‘Subscription‘ operation 6  7 #取指定的一個片段,位置可以順序0、1...或倒序...-2、-1   8 print (‘list 0 is‘, list[0]) 9 print (‘list 1 is‘, list[1])10 print (‘list 2 is‘, list[2])11 print (‘list 3 is‘, list[3])12 print (‘list -1 is‘, list[-1])13 print (‘list -2 is‘, list[-2])14 print (‘list 0 is %s,and item 1 is %s‘ % (list[0],item[1]))15 16 # Slicing on a list or item17 print(‘item [0,2] is ‘,item[0:2])  #用:分割開始序號和結束位置(不包括),分號不可省  18 print(‘item [0,-1] is ‘,item[0:-1])  #開始和結束序號都可為負數,負數為倒序  19 print(‘item [ :3] is ‘,list[:3]) #省略開始,預設從0,20 print(‘item [1: ] is ‘,list[1:]) #省略結束,預設到結尾(包含),  21 print(‘item [ : ] is ‘,list[:])  #分割開始序號和結束位置都可省略,取得全部元素  22 23 # Slicing on a string24 name = ‘swaroop‘25 print (‘Characters [1:3] is ‘,name[1:3])26 print (‘Characters [1:3] is %s‘ % name[1:3]) #注意區別與上面print語句的分別27 print (‘Characters [0:4] is‘,name[0:4])28 print (‘Characters [:5] is‘,name[:5])29 print (‘Characters [2:] is‘,name[2:])30 print (‘Characters [1:-1] is‘,name[1:-1])31 print (‘Characters [:] is‘,name[:])

 

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.