Python輸入一串字符串,輸出字符串單詞的個數

str = input("請您輸入一串字符串:") str1 = str.strip() # 去掉字符串先後空格 index = 0 count = 0 while index < len(str1): while str1[index] != " ": # 當不是空格是,下標加1 index += 1 if index == len(str1): # 當下
相關文章
相關標籤/搜索