python中的strip函数的用法
1.基本概念:
strip() 方法用于移除字符串头尾指定的字符或字符序列(默认为空格或换行符)。
2.语法格式:
str.strip([chars])。
参数说明:
str:要进行操作的字符串;
chars:(可选)指定在字符串头和尾中需要移除的字符或字符序列。
3.使用示例:
a.移除字符串中头尾的空格:
str = ' hello world '。
str.strip()          # 'hello world' 。
b.移除字符串头部的指定字符:
str = '***hello world'。
str.strip('*')      # 'hello world'。
c.移除字符串尾部的指定字符:
str = 'hello world~~~'。
str.strip('~')      # 'hello world'。
字符串函数strip的作用d.移除字符串头尾的指定字符序列:
e. 注意:strip()方法返回的是新的字符串,原始字符串并没有被改变。
str = ' hello world '。
new_str = str.strip()。
print(str)        # ' hello world '。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。