<潭州教育>-Python學習筆記@作業2

來源:互聯網
上載者:User

標籤:png   div   sort   clear   apple   log   com   margin   作業   

列表方法:

 1 lst = [‘a‘,‘b‘,‘c‘,‘d‘] 2 ##加 3 lst.append(‘e‘)  ###增加元素 4 lst.extend([‘f‘,‘g‘])  ### 拓展列表 5 lst.insert(1,‘e‘) ## 插入元素 6 ##減 7 lst.remove(‘b‘)  ## 刪除元素,傳回值為None,若沒有該元素,報錯 8 lst.pop()  ## 預設剔除掉一個元素, 9 lst.pop(1)  ###加入索引值,刪除該索引下元素,返回刪除值10 lst.clear()  ##清除掉list11 12 ##計數,尋找13 lst.count(‘a‘)  ###列表中元素的出現的次數 14 lst.index(‘a‘)  ### 查看元素在列表中的索引值15 16 ##其他17 # L.copy() -> list -- a shallow copy of L18 lst.copy() ## 返回一個複製的列表19 lst.reverse() ## 列表反轉20 lst.sort() ### 列表排序

 

 

 

#第二次作業

 

1.用3種方法,往列表裡面插值

 

 1 lst = [‘a‘,‘b‘,‘c‘,‘d‘] 2 ##加 3 lst.append(‘e‘)  ###增加元素 4 lst.extend([‘f‘,‘g‘])  ### 拓展列表 5 lst.insert(1,‘e‘) ## 插入元素

#2.用2種方法 ,將列表 li2 =[‘a‘,‘b‘,‘c‘]  ,替換成 [‘a‘,‘jianeng‘,‘c‘] 。

 

 方法1:元素賦值

 

 

 

方法2:先刪除掉b值,再插入新值

 

 

 

 

 

 

#3.將字串 s =‘hello python !‘, 先把‘python‘ 替換成‘2018‘ ,然後轉換成列表 li=[‘hello‘,‘2018‘,‘!‘]

 

 

 

 

 

 

 

#4. 將列表 li4 = [‘a‘, ‘bbb‘,‘cc‘,‘dddd‘] , 按照字串長度,從大到小排序。[‘dddd‘, ‘bbb‘, ‘cc‘, ‘a‘]

 

## L.sort(key=None, reverse=False) -> None -- stable sort *IN PLACE*
#1
li4 = [‘a‘, ‘bbb‘,‘cc‘,‘dddd‘]li4.sort(key = lambda x : len(x),reverse=True)print(li4)

  

#2
li4 = [‘a‘, ‘bbb‘,‘cc‘,‘dddd‘]li4.sort(key = len,reverse = True)print(li4)

  

 

 

 

<潭州教育>-Python學習筆記@作業2

相關文章

聯繫我們

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