1. 程式人生 > >python中sequence常用方法

python中sequence常用方法

(1)序列型別函式

enumerate(), reversed(), sorted(), zip()

(2)字串型別方法

join(), strip(), replace(), split(), translate(),startswith() 

其中translate()需要使用maketrans()方法:

>>> z = str.maketrans(x,y) #in Python 2 from string import maketrans z = maketrans(x,y)

(3)列表型別方法

append(), count(), extend(), insert(), pop(), sort()