Python序列的基本操作

成员关系操作符(in、not in)

Example

对象[not] in 序列

letter = "ABCDEFG"
'A' in letter

链接操作符(+)

Example

序列+序列

abc = 'abc'
bcd = 'bcd'
abc + bcd

重复操作符(*)

序列*整数

Example

string = '重要的事要说三遍'
string * 3

切片操作符([:])

序列[0:整数]

Example

string = 'ababbcbc'
sting[0:3]

你可能感兴趣的:(Python序列的基本操作)