Well, here is my code:
print "Welcome to the English to Pig Latin translator!"
original = raw_input("Please enter a word: ")
pyg = "ay"
if len(original) >= 1 and original.isalpha()
word = original.lower()
first = word[0]
if word == a or e or i or o or u
print "Your first letter is a vowel"
else print "You'r first letter is a consonant"
print
print "So your word is " + original
else:
print "No word detected."
As you can see there are no colons, even thought there should be. It is not a finished program yet and I am doing it for this site called http://codecademy.com I need help understanding colons in python...