刚学习python中 ,想用python代码实现strip 方法
实现思路,定义两个变量 a1,a2
循环入参字符串, a1从字符串前面循环找到第一个不为空格的字符位置, a2则从后面循环找到最后一个不为空格的字符串位置.然后截取字符串即可.
上代码:
def trim(st):
if not isinstance(st, str):
raise TypeError('not a str')
i = 0
while i < len(st):
if st[i] == ' ':
i = i + 1
else:
break
if i == len(st):
return ' '
j = len(st) - 1
while j >= 0:
if st[j] == ' ':
j = j - 1
else:
break
j = j + 1
return st[i:j]