Python rstrip()方法
Python rstrip()方法
Python rstrip() 刪除 string 字符串末尾的指定字符(默認為空格).
語法
rstrip()方法語法:
str.rstrip([chars])
參數(shù)
- chars -- 指定刪除的字符(默認為空格)
返回值
返回刪除 string 字符串末尾的指定字符后生成的新字符串。
實例
以下實例展示了rstrip()函數(shù)的使用方法:
實例
#!/usr/bin/python str = " this is string example....wow/b64/ "; print str.rstrip(); str = "88888888this is string example....wow/b64/8888888"; print str.rstrip('8');
以上實例輸出結(jié)果如下:
this is string example....wow/b64/ 88888888this is string example....wow/b64/
相關(guān)文章
- Python 運算符
- Python 網(wǎng)絡編程
- Python2 與 Python3?? 版本區(qū)別
- Python 節(jié)點
- Python 哈希表
- Python3 元組(Tuple)
- Python3 錯誤和異常
- Python3 面向?qū)ο?/a>
- Python File seek() 方法
- Python os.chroot() 方法
- Python os.minor() 方法
- Python os.rmdir() 方法
- Python isalpha()方法
- Python islower()方法
- Python rindex()方法
- Python rjust()方法
- Python rstrip()方法
- Python 字典 Dictionary keys()方法
- Python 字典 Dictionary pop() 方法
- Python time localtime()方法