Python字串strip()
方法返回從字串的開始和結束(預設空格字元)中刪除指定所有字元的字串的副本。
語法
以下是strip()
方法的語法 -
str.strip([chars]);
引數
返回值
chars
)的字串的副本。範例
以下範例顯示了strip()
方法的用法 -
#!/usr/bin/python3
str = "*****this is string example....wow!!!*****"
print (str.strip( '*' ))
當執行上面的程式,它產生以下結果 -
this is string example....wow!!!