【和我一起學python吧】python的資料類型

來源:互聯網
上載者:User

標籤:java   使用   os   io   strong   資料   for   ar   

python的元組、列表、字典資料類型是很python(there python is a adjective )的資料結構。這些結構都是經過足夠最佳化後的,所以如果使用好的話,在某些area會有很大的益處。

元組

         個人認為就像java的數組,python中的元組有以下特性:

  • 任意對象的有序集合,這條沒啥說的,數組的同性;
  • 通過位移讀取;
  • 一旦產生,不可改變;
  • 固定長度,支援嵌套

         來例子吧:

python 代碼
  1. >>> (0, ‘haha‘, (4j, ‘y‘))   
  2. (0, ‘haha‘, (4j, ‘y‘))   
  3. >>> t = (1, 3, ‘b‘)   
  4. >>> t[2]   
  5. ‘b‘   
  6. >>> t[3]   
  7.   
  8. Traceback (most recent call last):   
  9.   File "#41>", line 1, in <module></module>   
  10.     t[3]   
  11. IndexError :  tuple   index  out of  range   
  12. >>> t[-1]   
  13. ‘b‘   
  14. >>> t[0:-1]   
  15. (1, 3)   
  16. >>> t * 2   
  17. (1, 3, ‘b‘, 1, 3, ‘b‘)   
  18. >>>  for  x  in  t:   
  19.      print  x,   
  20.   
  21.        
  22. 1 3 b   
  23. >>> ‘b‘  in  t   
  24. True   
  25. >>> q = t + ((3, ‘abc‘))   
  26. >>> q   
  27. (1, 3, ‘b‘, 3, ‘abc‘)   
  28. >>>  for  x  in  (2, (3, ‘a‘)):   
  29.      print  x   
  30.   
  31.        
  32. 2   
  33. (3, ‘a‘)   
  34. >>>  len (q)   
  35. 5   
  36. >>>  len ((2, (3, ‘abc‘)))   
  37. 2   
  38. >>> (1, 2, 3)[1]   
  39. 2   
  40. >>> q[1] = ‘d‘   
  41.   
  42. Traceback (most recent call last):   
  43.   File "#57>", line 1, in <module></module>   
  44.     q[1] = ‘d‘   
  45. TypeError : ‘ tuple ‘  object  does  not  support item assignment   
  46. >>> a = (‘b‘, ‘c‘, q)   
  47. >>> 1  in  a   
  48. False   
  49. >>> q  in  a   
  50. True   
  51. >>> a   
  52. (‘b‘, ‘c‘, (1, 3, ‘b‘, 3, ‘abc‘))   
  53. >>> q=‘d‘   
  54. >>> a   
  55. (‘b‘, ‘c‘, (1, 3, ‘b‘, 3, ‘abc‘))  

上面的例子足以說明大部分了,使用元組時最重要的一點是“一旦產生,就不可變了”。

列表

      列表就像java裡的collection,所具有的特性也要比元組更多,更靈活,其character總結如下:

  • 任意對象的有序集合;
  • 可通過位移存取,注意,列表中的元素都是可變的,這是不同於元組的;
  • 長度可變,支援嵌套;
  • 還有一些類似java的對象引用機制

      由於列表的這些特性,使得列表在實際應用中被廣泛使用,下面是一些例子。

1) 首先是基本用法

python 代碼
  1. >>> l = [‘a‘, ‘b‘, ‘c‘]   
  2. >>>  len (l)   
  3. 3   
  4. >>> l + [‘d‘]   
  5. [‘a‘, ‘b‘, ‘c‘, ‘d‘]   
  6. >>> l * 2   
  7. [‘a‘, ‘b‘, ‘c‘, ‘a‘, ‘b‘, ‘c‘]   
  8. >>>  for  x  in  l:   
  9.      print  x,   
  10.   
  11.        
  12. a b c  

2) 索引和分區,賦值(單個元素賦值,分區賦值)

python 代碼
  1. >>> l = [‘abc‘, ‘ def ‘, ‘ghi‘, 123]         
  2. >>> l[2]         
  3. ‘ghi‘         
  4. >>> l[-3]         
  5. ‘ def ‘         
  6. >>> l[:3]         
  7. [‘abc‘, ‘ def ‘, ‘ghi‘]       
  8. >>> l[1] = ‘haha‘      
  9. >>> l      
  10. [‘abc‘, ‘haha‘, ‘ghi‘, 123]      
  11. >>> l[1:] = [‘apple‘, ‘banana‘]      
  12. >>> l      
  13. [‘abc‘, ‘apple‘, ‘banana‘]      
  14. >>> l[2] = [123, 345, 456]      
  15. >>> l      
  16. [‘abc‘, ‘apple‘, [123, 345, 456]]      
  17. >>> l[1:] = [123, 234, 345, 456, 567]      
  18. >>> l      
  19. [‘abc‘, 123, 234, 345, 456, 567]  

 

3) 添加、排序、刪除操作

python 代碼
  1. >>> l = [‘abc‘, ‘ def ‘, ‘ghi‘, 123]   
  2. >>> l. append (456)   
  3. >>> l   
  4. [‘abc‘, ‘ def ‘, ‘ghi‘, 123, 456]   
  5. >>> l.sort()   
  6. >>> l   
  7. [123, 456, ‘abc‘, ‘ def ‘, ‘ghi‘]   
  8. >>>  del  l[0]   
  9. >>> l   
  10. [456, ‘abc‘, ‘ def ‘, ‘ghi‘]   
  11. >>>  del  l[2:]   
  12. >>> l   
  13. [456, ‘abc‘]  

4)一些有趣的用法(來自論壇 id—咖啡舞者 )

      去掉列表中每個元素頭尾的空格:

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.