python中的英文單詞

2021-08-04 02:35:02 字數 635 閱讀 8099

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...