当前位置:   article > 正文

python中的input().strip().split()

input().strip().split()
1、strip()方法

strip() 方法用于移除字符串头尾指定的字符(默认为空格)。
strip()方法语法:

str.strip([c])
c指的是字符串头尾指定的字符

str = "FFF I am a zhulang FFF";
print str.strip( 'FFF' );
  • 1
  • 2

输出:I am a student

2、split()方法

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 );
  • 1
  • 2
  • 3

输出:
[‘Line1-abcdef’, ‘Line2-abc’, ‘Line4-abcd’]
[‘Line1-abcdef’, ‘\nLine2-abc \nLine4-abcd’]

3、举出一个综合例子说明一下:

raw_input().strip().split()效果

raw_input()          #' insert 0 5     '
raw_input().strip()  #'insert 0 5'
raw_input().strip().split()  #['insert', '0', '5']
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/563929
推荐阅读
相关标签
  

闽ICP备14008679号