strip和split的使用
**strip 剥去,
Python strip()方法**
Python 字符串 Python 字符串
描述
Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。
语法
strip()方法语法:
str.strip([chars]);
参数
chars – 移除字符串头尾指定的字符。
返回值
返回移除字符串头尾指定的字符生成的新字符串。
http://www.runoob.com/python/att-string-strip.html
****spilt分割
Python stplit()方法**
描述
Python split()通过指定分隔符对字符串进行切片,如果参数num 有指定值,则仅分隔 num 个子字符串
语法
split()方法语法:
str.split(str=”“, num=string.count(str)).
参数
str – 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
num – 分割次数。
返回值
返回分割后的字符串列表。
http://www.runoob.com/python/att-string-split.html
输入
'+tree CHIP_TB_SOC 1'.strip()[0]
'+tree CHIP_TB_SOC 1'.split()[0]
分别会输出
'+'
'+tree'
这里strip将字符串两侧的空格去掉,然后取第一位
这里split依据空格将字符串切片,然后取第一部分