我給存儲在一個名爲words_list
列表的文本文件中的單詞的所有元音數量:尋找
if __name__ = "__main__":
words_file = open('words.txt')
words_list = []
for w in words_file:
w = w.strip().strip('\n')
words_list.append(w)
這就是字符串列表樣子(這是一個好長好長的名單字)
我必須找到「所有的單詞」與所有的元音;到目前爲止,我有:
def all_vowel(words_list):
count = 0
for w in words_list:
if all_five_vowels(w): # this function just returns true
count = count + 1
if count == 0
print '<None found>'
else
print count
的問題,這是count
1次它看到一個元音每次增加,而我希望它加1 只有如果整個單詞擁有所有的元音。
.strip後'()','.strip( '\ n')'是多餘的。 – 2013-02-25 17:50:12