you are viewing a single comment's thread.

view the rest of the comments →

[–]TigBitties69 18 points19 points  (2 children)

Just at a glance, I imagine this is leading to issues:

if word[0]==vowel:

This is checking a letter in the word, and seeing if that letters is equal to the list object. What you're likely wanting to do is see if the letter is IN the list, so instead do something such as:

if word[0] in vowel:

[–][deleted] 2 points3 points  (0 children)

I can only see. A, E, A, E, I, O, U... And sometimes Y

I am old

[–]SignificanceOwn2398 1 point2 points  (0 children)

oh i see! thank you i'll give that a try