python中split()和split(' ')的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中split()和split(' ')的区别相关的知识,希望对你有一定的参考价值。

总结:split()的时候,多个空格当成一个空格;split(‘ ‘)的时候,多个空格也要分割,会分割出来空。

例1:

牛客网:牛客最近来了一个新员工Fish,每天早晨总是会拿着一本英文杂志,写些句子在本子上。同事Cat对Fish写的内容颇感兴趣,有一天他向Fish借来翻看,但却读不懂它的意思。例如,“student. a am I”。后来才意识到,这家伙原来把句子单词的顺序翻转了,正确的句子应该是“I am a student.”。Cat对一一的翻转这些单词顺序可不在行,你能帮助他么?

这样的代码就可以通过:

s=student a am I
s=        
if not s :
    print(s)
s=s.split( )
        
result=[]
for i in range(len(s)-1,-1,-1):
    result.append(s[i])
    if i:#最后一个位置不需要加空格
        result.append( )
m=‘‘.join(result)
length=(len(m))
print(m)
print(length)

输出:

 
1

 

如果把split(‘ ‘)中的空格去掉,就处理不了输入为空的情况:

s=student a am I
s=        
if not s :
    print(s)
s=s.split()
        
result=[]
for i in range(len(s)-1,-1,-1):
    result.append(s[i])
    if i:#最后一个位置不需要加空格
        result.append( )
m=‘‘.join(result)
length=(len(m))
print(m)
print(length)

输出:

0

例2:

用split()测试一下看看:

s0=we are students#一个空格
s1=we are  students#两个空格
s2=we are   students#三个空格
s3=we are    students#四个空格

s0=s0.split()
print(s0)
print(len(s0))
s1=s1.split()
print(s1)
print(len(s1))
s2=s2.split()
print(s2)
print(len(s2))
s3=s3.split()
print(s3)
print(len(s3))

输出为:

[we, are, students]
3
[we, are, students]
3
[we, are, students]
3
[we, are, students]
3

 

用split(‘ ‘)测试一下看看:

s0=we are students#一个空格
s1=we are  students#两个空格
s2=we are   students#三个空格
s3=we are    students#四个空格

s0=s0.split( )
print(s0)
print(len(s0))
s1=s1.split( )
print(s1)
print(len(s1))
s2=s2.split( )
print(s2)
print(len(s2))
s3=s3.split( )
print(s3)
print(len(s3))

输出:

[we, are, students]
3
[we, are, ‘‘, students]
4
[we, are, ‘‘, ‘‘, students]
5
[we, are, ‘‘, ‘‘, ‘‘, students]
6

总结:split()的时候,多个空格当成一个空格;split(‘ ‘)的时候,多个空格也要分割,会分割出来空。

以上是关于python中split()和split(' ')的区别的主要内容,如果未能解决你的问题,请参考以下文章

python split函数用法

python split函数

【Python】split()函数

python split分割次数

python中split的具体用法

Python字符串操作的split方法?