我的 if 语句出现语法错误:
print "Welcome to the English to Pig Latin translator!"
original = raw_input("Please enter a word to be translated: ")
word_length = len(original)
def length_check():
If (word_length) > 0 : <-- This colon brings up the following error:
return original
File "python", line 7
If (word_length) > 0 :
^
SyntaxError: invalid syntax