1. 程式人生 > >Python strip()方法介紹

Python strip()方法介紹

str 字符串 pytho utf-8 刪除 ron bsp odin 去除

描述

Python strip() 方法用於移除字符串頭尾指定的字符(默認為空格或換行符)或字符序列。

註意:該方法只能刪除開頭或是結尾的字符,不能刪除中間部分的字符。

Example:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
str = "00000003210Runoob01230000000"; 
print (str.strip( 0 ) ) # 去除首尾字符 0
 
 
str2 = "   Runoob      "# 去除首尾空格
print (str2.strip())

以上實例輸出結果如下:

3210Runoob0123
Runoob

下例演示了只要頭尾包含有指定字符序列中的字符就刪除:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
str = "123abcrunoob321"
print (str.strip( 12 ))  # 字符序列為 12

輸出結果如下:

3abcrunoob3

Python strip()方法介紹