Should have used the code tags but have sorted out the issue, thanks guys.
On a dif not, why do the vowels below need quotes around them. I would have done it without...
Code:
secret = input("Type something amusing: ")
count_vowels = 0
count_vowel_pairs = 0
last_char_was_vowel = False
for each_letter in secret.lower():
print(each_letter)
if ( each_letter == "a"
or each_letter == "e"
or each_letter == "i"
or each_letter == "o"
or each_letter == "u" ) :
count_vowels = count_vowels + 1
Midterm tomorrow so trying to iron these little things out.
Thanks again, you guys have been rly helpful!
-Mariogs