1. 程式人生 > >Python trim()切片函式去除首尾空格

Python trim()切片函式去除首尾空格

def trim(s):
   if len(s) == 0:  # 字串為空直接返回
      return ''
   elif s[0] != ' ' and s[-1] != ' ':  # 首尾不存在空格直接返回
      return s
   elif s[0] == ' ':  # 字串頭存在空格則截斷
      return trim(s[1:])
   else:
      return trim(s[:-1])  # 字串尾存在空格則截斷

 

if trim('hello  ') != 'hello':
   print('測試失敗')
elif trim('  hello') != 'hello':
   print('測試失敗')
elif trim('  hello word  ') != 'hello word':
   print('測試失敗')
elif trim(' ') != '':
   print('測試失敗')
elif trim('    ') != '':
   print('測試失敗')
else:
   print('測試成功')