Python 元組、列表、字典、檔案

來源:互聯網
上載者:User

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 代碼
  1. >>> freshfruit = [' banana', ' loganberry ', 'passion fruit ']    
  2. >>> [str.strip() for str in freshfruit]    
  3. ['banana', 'loganberry', 'passion fruit']  

    把列表中,大於3的元素,乘以2:

python 代碼
  1. >>> vec = [2, 4, 6]    
  2. >>> [2*x for x in vec if x > 3]    
  3. [8, 12]  

    把列表1的每一個元素和列表2的每一個元素相乘:

python 代碼 
  1. >>> lst1 = [2, 4, 6]    
  2. >>> lst2 = [4, 3, -9]    
  3. >>> [x*y for x in lst1 for y in lst2]    
  4. [8, 6, -18, 16, 12, -36, 24, 18, -54]  

    取獲[0-10)的平方:

python 代碼
  1. [x**2 for x in range(10)]  

字典

         python裡的字典就像java裡的HashMap,以索引值對的方式存在並操作,其特點如下

  • 通過鍵來存取,而非位移量;
  • 索引值對是無序的;
  • 鍵和值可以是任意對象;
  • 長度可變,任意嵌套;
  • 在字典裡,不能再有序列操作,雖然字典在某些方面與列表類似,但不要把列表套在字典上

 1) 基本操作

python 代碼
  1. >>> table = {'abc':1, 'def':2, 'ghi':3}   
  2. >>> table['abc']   
  3. 1   
  4. >>> len(table)   
  5. 3   
  6. >>> table.keys()   
  7. ['abc', 'ghi', 'def']   
  8. >>> table.values()   
  9. [1, 3, 2]   
  10. >>> table.has_key('def')   
  11. True  
  12. >>> table.items()   
  13. [('abc', 1), ('ghi', 3), ('def', 2)]  

2) 修改,刪除,添加

python 代碼
  1. >>> table = {'abc':1, 'def':2, 'ghi':3}   
  2. >>> table['ghi'] = ('g', 'h', 'i')   
  3. >>> table   
  4. {'abc': 1, 'ghi': ('g', 'h', 'i'), 'def': 2}   
  5. >>> del table['abc']   
  6. >>> table   
  7. {'ghi': ('g', 'h', 'i'), 'def': 2}   
  8. >>> table['xyz'] = ['x', 'y', 'z']   
  9. >>> table   
  10. {'xyz': ['x', 'y', 'z'], 'ghi': ('g', 'h', 'i'), 'def': 2}  

在這裡需要來一句,對於字典的擴充,只需定義一個新的索引值對即可,而對於列表,就只能用append方法或分區賦值。

3)對字典的遍曆

python 代碼
  1. >>> table = {'abc':1, 'def':2, 'ghi':3}   
  2. >>> for key in table.keys():   
  3.     print key, '\t', table[key]   
  4.   
  5.        
  6. abc     1   
  7. ghi     3   
  8. def     2  

檔案

與java的File類相比,python的檔案類要狹義一些

1) 檔案寫

python 代碼
  1. >>> myfile = open('myfile', 'w')   
  2. >>> myfile.write('hello world\n')   
  3. >>> myfile.close()  

python的一個open語句就開啟了一個檔案(當給定的檔案不存在時,會自動建立一個新的檔案)。open的第一個參數是檔案名稱,第二個參數是操作模式,所謂操作模式就是你開啟一個檔案是用來幹什麼的,是讀,還是寫(當然操作模式不僅只有讀和寫)。還有一件事,操作完要記得關。

2) 檔案讀

python 代碼
  1. >>> myfile = open('myfile', 'r')   
  2. >>> myfile.readlinereadline()   
  3. 'hello world\n'  

很是簡單,這樣兩句就頂java一長串的流嵌套,當然,java那樣做也是有道理的。

ok,學了不少,說實話,python的core真的沒多少,也很簡單,難的是何時和如何用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.