我需要帮助: 找出不包含五个元音和三个 y 的单词的数量。
到目前为止,我有:
def no_vowels_yyy(s):
count = 0
list_of_vowels = ['a', 'e', 'i', 'o', 'u']
for i in range(0, len(s)):
if s[i] not in list_of_vowels and (s[i] == 'y') == 3:
return True
return False
这虽然行不通...