在本教程中,我们将借助示例了解 Python String rstrip() 方法。
rstrip()
方法返回删除了尾随字符的字符串副本(基于传递的字符串参数)。
示例
title = 'Python Programming '
# remove trailing whitespace from title
result = title.rstrip()
print(result)
# Output: Python Programming
用法:
用法:
string.rstrip([chars])
参数:
chars
(可选)- 指定要删除的尾随字符集的字符串。
rstrip()
根据参数(指定要删除的字符集的字符串)从右侧删除字符。
如果未提供 chars
参数,则从字符串中删除右侧的所有空格。
返回:
rstrip()
返回字符串的副本,其中去除了尾随字符。
chars
参数中的所有字符组合都将从字符串的右侧删除,直到第一个不匹配。
示例:rstrip() 的工作
random_string = 'this is good '
# Trailing whitespace are removed
print(random_string.rstrip())
# 'si oo' are not trailing characters so nothing is removed
print(random_string.rstrip('si oo'))
# in 'sid oo', 'd oo' are the trailing characters, 'ood' is removed from the string
print(random_string.rstrip('sid oo')) website = 'www.programiz.com/'
print(website.rstrip('m/.'))
输出
this is good this is good this is g www.programiz.co
相关用法
- Python String rstrip()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String rpartition()用法及代码示例
- Python String replace()用法及代码示例
- Python String rindex()用法及代码示例
- Python String rjust()用法及代码示例
- Python String rfind()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String startswith()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String title()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
注:本文由纯净天空筛选整理自 Python String rstrip()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。