赞
踩
strip() 方法用于移除字符串头尾指定的字符(默认为空格)。
strip()方法语法:
str.strip([c])
c指的是字符串头尾指定的字符
str = "FFF I am a zhulang FFF";
print str.strip( 'FFF' );
输出:I am a student
split()方法通过指定分隔符对字符串进行切片,如果参数num 有指定值,则仅分隔 num 个子字符串
split()方法语法:
str.split(str="", num=string.count(str)).
参数:
str – 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
num – 分割次数。
str = "Line1-abcdef \nLine2-abc \nLine4-abcd";
print str.split( );
print str.split(' ', 1 );
输出:
[‘Line1-abcdef’, ‘Line2-abc’, ‘Line4-abcd’]
[‘Line1-abcdef’, ‘\nLine2-abc \nLine4-abcd’]
raw_input().strip().split()效果
raw_input() #' insert 0 5 '
raw_input().strip() #'insert 0 5'
raw_input().strip().split() #['insert', '0', '5']
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。