Python strip()方法
阿新 • • 發佈:2018-01-22
post 法語 str2 log 指定 去除 usr 方法 span
描述
Python strip() 方法用於移除字符串頭尾指定的字符(默認為空格)。
語法
strip()方法語法:
str.strip([chars]);
參數
chars -- 移除字符串頭尾指定的字符。
返回值
返回移除字符串頭尾指定的字符生成的新字符串。
實例
以下實例展示了strip()函數的使用方法:
實例(Python 2.0+)
#!/usr/bin/python # -*- coding: UTF-8 -*- str = "0000000 Runoob 0000000"; print str.strip( ‘0‘ ); # 去除首尾字符 0 str2 = " Runoob"; # 去除首尾空格 print str2.strip();
以上實例輸出結果如下:
Runoob
Runoob
只移除字符串頭尾指定的字符,中間部分不會移除:
#!/usr/bin/python str = "0000000this is string 0000example....wow!!!0000000"; print str.strip( ‘0‘ );
輸出結果中間部分的 0 還是存在的:
this is string 0000example....wow!!!
Python strip()方法