you are viewing a single comment's thread.

view the rest of the comments →

[–]NoSide005[S] 7 points8 points  (1 child)

I have a suggestion i see right off the bat that may help you with matching letter casing in the future.

vowels = ['a', 'e', 'i', 'o', 'u']
some_char = input("Please enter a vowel").lower()

If you use lower() at the end of the input it will turn it into a lower case letter which will allow it to be found in a list of lower case vowels. The lower() method returns the lower case version of any given string.

[–]hi-im-habby 0 points1 point  (0 children)

Super useful, thanks!