移除字符串头尾指定的字符序列
#!/usr/bin/python
# -*- coding: UTF-8 -*-
str = "00000003210Runoob01230000000";
print str.strip( '0' ); # 去除首尾字符 0
str2 = " Runoob "; # 去除首尾空格
print str2.strip();
str = "123abcrunoob321"
print (str.strip( '12' )) # 字符序列为 12
.strip('\n') #去掉回车
.strip() #去掉空格
用/来分割内容(内容中有/)
.split('/')