list是乙個可變的有序表,所以,可以往list中追加元素到末尾:
>>> classmates
['michael', 'bob', 'tracy', 'adam']
也可以把元素插入到指定的位置,比如索引號為1
的位置:
>>> classmates.insert(1, 'jack')
>>> classmates
['michael', 'jack', 'bob', 'tracy', 'adam']
要刪除list末尾的元素,用pop()
方法:
>>> classmates.pop()
'adam'
>>> classmates
['michael', 'jack', 'bob', 'tracy']
要刪除指定位置的元素,用pop(i)
方法,其中i
是索引位置:
>>> classmates.pop(1)
'jack'
>>> classmates
['michael', 'bob', 'tracy']
python 統計 英文 單詞
import sys,os,re def count words text num char text re.sub w text number text re.sub 0 9 text shrink whitespace text re.sub s text return text.count d...
Python常用英文單詞
一 互動式環境與print輸出 1 print 列印 輸出 2 coding 編碼 3 syntax 語法 4 error 錯誤 5 invalid 無效 6 identifier 名稱 識別符號 7 character 字元 二 字串的操作 1 user 使用者 2 name 姓名 名稱 3 at...
Python常用英文單詞
一 互動式環境與print輸出 1 print 列印 輸出 2 coding 編碼 3 syntax 語法 4 error 錯誤 5 invalid 無效 6 identifier 名稱 識別符號 7 character 字元二 字串的操作 1 user 使用者 2 name 姓名 名稱 3 att...