python基礎任務2

列表 列表(list)是一種有序集合,可任意擴展,隨時添加/刪除元素。 a. 標誌 方括號[ ] b. 基本操做(建立,append( ),pop( ) ,del( ), 拷貝) # 建立 list = ['1','2','3'] # append() list.append('4') # insert list.insert(2,'5') # pop list.pop() list.pop(i)
相關文章
相關標籤/搜索