这篇教程Python3 rstrip()方法写得很实用,希望能帮到您。 描述rstrip() 删除 string 字符串末尾的指定字符(默认为空格). 语法rstrip()方法语法: str.rstrip([chars]) 参数返回值返回删除 string 字符串末尾的指定字符后生成的新字符串。 实例以下实例展示了rstrip()函数的使用方法: #!/usr/bin/python3str = " this is string example....wow!!! "print (str.rstrip())str = "*****this is string example....wow!!!*****"print (str.rstrip('*')) 以上实例输出结果如下: this is string example....wow!!!*****this is string example....wow!!! Python3 rjust()方法 Python3 split()方法 |