スライス操作によりtrim()関数を実現し,文字列の先頭と末尾のスペースを除去する

882 ワード

再帰的でない方法:
def trim(s):
    while(s[:1]==' '):
        s=s[1:]
    while(s[-1:]==' '):
        s=s[:-1]
    return s

再帰的な方法:
def trim(s):
    if len(s)==0:
        return s
    elif s[:1]==' ':
        return trim(s[1:])
    elif s[-1:]==' ':
        return trim(s[:-1])
    return s
#   :
if trim('hello  ') != 'hello':
    print('    !')
elif trim('  hello') != 'hello':
    print('    !')
elif trim('  hello  ') != 'hello':
    print('    !')
elif trim('  hello  world  ') != 'hello  world':
    print('    !')
elif trim('') != '':
    print('    !')
elif trim('    ') != '':
    print('    !')
else:
    print('    !')