更新时间:2022-09-22 来源:黑马程序员 浏览量:
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所示。
图4-20 运行结果
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所示。
图4-21 运行结果