well first of all i cant figure out how to move the first letter to the end
but before i fix that i need help figuring out why the else branch is being totally ignored. even when the conditions are met for else It still gives me the result in the if branch
pyg = 'ay'
original = raw_input('Enter a word')
word=original
first=word[0]
new_word=original[1:]
if len(original) > 0 and original.isalpha():
if first == "a" or "e" or "i" or "o" or "u":
print original+pyg
else:
new_word=original[1:]
print new_word
else:
print 'empty'
word=original
first=word[0]