def trim(s): while s[:1]==' ': s=s[1:] while s[-1:]==' ': s=s[:-1] return s
測試沒有問題,但是想到,如果字符串是" " (即單獨的一個空格)應該會進入死循環,但是並沒有
問題一:為什麼沒進入死循環
問題二:後面自己改了一下代碼如下:
def trim(s): while s[0]==" ": if len(s)==1: s=" " break s=s[1:] while s[-1]==" ": if len(s)==1: s=" " break s=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('測試成功!')
發現會出現報錯,報錯為:
File "c:\Users\zdw\Desktop\python\study\qiepian.py", line 23, in <module> elif trim('') != '': File "c:\Users\zdw\Desktop\python\study\qiepian.py", line 2, in trim while s[0]==" ":IndexError: string index out of range
問題二:為什麼第二種單獨測試字符串" "不會報錯,而統一測試會報錯
謝謝大家。剛開始學python,理論理解不清