去除字符串的首尾空格 Python实现

学习资源:廖雪峰Python教程——切片

牢记:代码越少越好,逻辑越简单越好

尝试了3种实现方法,其中trim1是类C的实现,逻辑复杂,trim2和trim都是pythonic的,但是trim巧妙地解决了空字符串地情况,代码更加少、更加简洁。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

def trim1(s):
    idx=-1
    for ss in s:      #去除首部空格
        if(ss==' '):
            idx += 1    #最后一个空格所在的下标
        else:
            s=s[idx+1:]
            break

    ridx=0
    count=0
    for ss in s:
        if(ss==' '):
            count += 1
            continue
        else:
            ridx += 1+count    #最后一个非空格字符的下一个下标
            count=0
    s=s[:ridx]

    return s

def trim2(s):
    while((s != '') and (s[0]==' ')):
        s=s[1:]
    while(s != '' and s[-1]==' '):
        s=s[:-1]
    return s

def trim(s):
    while(s[:1]==' '):    #即使空字符串也不会索引越界
        s=s[1:]
    while(s[-1:]==' '):    #即使空字符串也不会索引越界
        s=s[:-1]
    return s


#test
print("trim('hello  ')          =", trim('hello  ')         )
print("trim('  hello')          =", trim('  hello')         )
print("trim('  hello  ')        =", trim('  hello  ')       )
print("trim('  hello  world  ') =", trim('  hello  world  '))
print("trim('')                 =", trim('')                )
print("trim('    ')             =", trim('    ')            )

if trim('hello  ') != 'hello':
    print('#1 测试失败!')
elif trim('  hello') != 'hello':
    print('#2 测试失败!')
elif trim('  hello  ') != 'hello':
    print('#3 测试失败!')
elif trim('  hello  world  ') != 'hello  world':
    print('#4 测试失败!')
elif trim('') != '':
    print('#5 测试失败!')
elif trim('    ') != '':
    print('#6 测试失败!')
else:
    print('测试成功!')

测试结果:

C:\python>trim.py
trim('hello  ')          = hello
trim('  hello')          = hello
trim('  hello  ')        = hello
trim('  hello  world  ') = hello  world
trim('')                 =
trim('    ')             =
测试成功!

 

PS: 递归算法都可以写成循环,但是递归很深时会发生“栈溢出”。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值