首页技术文章正文

Python中rstrip函数和strip函数的用法-Python培训

更新时间:2022-09-22 来源:黑马程序员 浏览量:

  1.rstrip

  rstrip函数用于删除字符串末尾的指定字符,返回的是一个新的字符串。

  语法格式如下:

str.rstrip([chars])

  参数含义如下。

  chars:指定删除的字符,默认为空格。

  接下来,通过一个案例来演示rstrip函数的使用,如例4-19所示。

  例4-19 rstrip函数的使用

old_string = 'hello world itheima and itheimaApp'
new_string = old_string.rjust(50)
print(new_string)

  运行结果如图4-20所示。

1663832582879_rstrip函数运行结果.jpg

  图4-20 运行结果

  2.strip

  strip函数用于移除字符串头尾指定的字符,返回的是一个新字符串。

  语法格式如下:

str.strp([chars]);

  参数含义如下。

  chars;删除字符串头尾指定的字符,默认为空格。

  接下来,通过一个案例来演示strip函数的使用,如例4-20所示。

  例4-20 strip函数的使用

old_string = ' hello world itheima and itheimaApp '
new_string = old_string.strip()
print (new_string)

  运行结果如图4-21所示。

1663832757323_strip函数的运行结果.jpg

  图4-21 运行结果

分享到:
在线咨询 我要报名
和我们在线交谈!