返回字符串 s 的长度
s = 'hello'
print(len(s)) # 5
将字符串转换为全部小写/大写
s = 'Hello'
print(s.lower()) # hello
print(s.upper()) # HELLO
去除字符串两端的空白符
s = ' hello '
print(s.strip()) # 'hello'
去除字符串左端/右端的空白符
s = ' hello '
print(s.lstrip()) # 'hello '
print(s.rstrip()) # ' hello'
返回子字符串 substr 在 s 中出现的次数
s = 'hello world'
print(s.count('l')) # 3
将 s 中的 old 子字符串替换为 new
s = 'hello world'
print(s.replace('world', 'Python')) # 'hello Python'
根据分隔符 sep 分割字符串,返回分割后的列表
s = 'hello world'
print(s.split()) # ['hello', 'world']
使用字符串 s 作为分隔符,将可迭代对象 iterable 中的所有元素合并为一个新的字符串
s = '-'
seq = ['a', 'b', 'c']
print(s.join(seq)) # 'a-b-c'
寻找子字符串 sub 在 s 中出现的第一个位置,返回索引,未找到返回 -1
s = 'hello world'
print(s.find('l')) # 2
同 find,但若未找到会引发 ValueError
s = 'hello world'
print(s.index('l')) # 2
判断 s 是否以 prefix 开头
s = 'hello world'
print(s.startswith('he')) # True
判断 s 是否以 suffix 结尾
s = 'hello world'
print(s.endswith('ld')) # True