python 常見細節知識點

來源:互聯網
上載者:User

標籤:learning   函數   shape   ext   sha   元素   內容   nbsp   shel   

1.a[::-1]翻轉

設有一個元組或者列表

a = (1,2,3,4)b = [1,2,3,4]

則a[::-1]和b[::-1]的含義是將元組或列表的內容翻轉

a[::-1]  # 結果為(4,3,2,1)b[::-1]  #結果為[4,3,2,1]

注意和a[:-1]的區別

a[:-1]表示從元組中切片,預設從第一個元素開始,到倒數第一個元素前面的那個元素為止

a[:-1] #結果為(1,2,3)b[:-1] #結果為[1,2,3]
2.Python中a和a[:]有什麼區別?

[]是引用 傳址調用
[:] 是複製 傳值調用

發現用b=a[:], 再給b賦值, 不會影響a; 直接給a[:]賦值卻會影響a

3.Python中flatten,matrix.A用法一、用在數組
  1. >>> a = [[1,3],[2,4],[3,5]]  
  2. >>> a = array(a)  
  3. >>> a.flatten()  
  4. array([1, 3, 2, 4, 3, 5]) 
二、用在列表

如果直接用flatten函數會出錯

  1. >>> a = [[1,3],[2,4],[3,5]]  
  2. >>> a.flatten()  
  3.   
  4. Traceback (most recent call last):  
  5.   File "<pyshell#10>", line 1, in <module>  
  6.     a.flatten()  
  7. AttributeError: ‘list‘ object has no attribute ‘flatten‘  

正確的用法

  1. >>> a = [[1,3],[2,4],[3,5],["abc","def"]]  
  2. >>> a1 = [y for x in a for y in x]  
  3. >>> a1  
  4. [1, 3, 2, 4, 3, 5, ‘abc‘, ‘def‘]  

或者(不理解)

  1. >>> a = [[1,3],[2,4],[3,5],["abc","def"]]  
  2. >>> flatten = lambda x: [y for l in x for y in flatten(l)] if type(x) is list else [x]  
  3. >>> flatten(a)  
  4. [1, 3, 2, 4, 3, 5, ‘abc‘, ‘def‘]  
三、用在矩陣
  1. >>> a = [[1,3],[2,4],[3,5]]  
  2. >>> a = mat(a)  
  3. >>> y = a.flatten()  
  4. >>> y  
  5. matrix([[1, 3, 2, 4, 3, 5]])  
  6. >>> y = a.flatten().A  
  7. >>> y  
  8. array([[1, 3, 2, 4, 3, 5]])  
  9. >>> shape(y)  
  10. (1, 6)  
  11. >>> shape(y[0])  
  12. (6,)  
  13. >>> y = a.flatten().A[0]  
  14. >>> y  
  15. array([1, 3, 2, 4, 3, 5]) 

 

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.