摘要:
点击查看代码 str1 = ' hello , welcome to the world ' # 去除字符串左右两边空白 str1.strip() 'hello , welcome to the world' # 去除字符串右边空白 str1.rstrip() ' hello , welcome t 阅读全文
摘要:
partition() 根据指定的分隔符 (sep) 将字符串进行分割,从字符串左边开始索引分隔符 sep, 索引到则停止索引,返回的是一个包含三个元素的元组 (tuple),即 (head, sep, tail)。 repartiton()是从后往前开始分割 点击查看代码 s = 'hello, 阅读全文
摘要:
字符串分割 split() rsplit() 跟split相比,它是从字符串最后面往前开始分割 splitlines() 按照 (\n, \r, \r\n 等) 分隔,分割成列表 点击查看代码 s = 'hello, welcome to the world' # 按空格分割 s.split() [ 阅读全文