程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

python切片的使用or函數的理解

編輯:Python
學習python切片時,是編寫函數可以做到去除字符串前後的空格,代碼如下:
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,理論理解不清


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved