函數的返回值及參數

1.爲什麼要用函數 如果不用len()這個Python內置函數統計「字符串」的長度,該如何獲取長度? s="hello word" n=0 for i in s: n+=1 print(n) 現在要計算另一個「字符串」的長度,「hello wuxi」 s="hello wuxi" n=0 for i in s: n+=1 print(n) 現在產生了一個問題:實現相同的功能,代碼冗
相關文章
相關標籤/搜索