到目前为止我的代码,但由于我迷路了,它并没有做任何接近我想要它做的事情:
vowels = 'a','e','i','o','u','y'
#Consider 'y' as a vowel
input = input("Enter a sentence: ")
words = input.split()
if vowels == words[0]:
print(words)
所以对于这样的输入:
"this is a really weird test"
我希望它只打印:
this, is, a, test
因为它们只包含 1 个元音。