I am new to Python. I am writing a program that distinguishes whether or not a word starts with a vowel. The problem is, that the program is only able to correctly handle up
You should use:
word[i] in 'AEIOUaeiou'