python中rstrip是指刪除字符串末尾指定字符的方法,rstrip的語法格式“str.rstrip([chars])”,這里chars是指定刪除的字符。
具體使用步驟:
1、首先打開python編輯器,新建一個python項目。
2、在python項目中使用rstrip方法來刪除刪除字符串末尾指定字符。
print str.rstrip('8'); #刪除字符串末尾為“8”的字符
示例代碼:
#!/usr/bin/python
str = " this is string example....wow!!! ";
print str.rstrip();
str = "88888888this is string example....wow!!!8888888";
print str.rstrip('8');
輸出結果:
this is string example....wow!!!
88888888this is string example....wow!!!