Pig Latin Python Project Help

print 'Welcome to the Pig Latin Translator!'

# Start coding here!
name = raw_input ("Enter a word ")
original = name
if len(original) > 0:
  original = True
if len(original) < 0:
	original = False
if original False:
  raw_input("Try Again")

When I run it the prompt returns
“File “python”, line 10
if original False:
^
SyntaxError: invalid syntax”

this:

if original False:

doesn’t look as valid syntax. What are you attempting here? Shouldn’t there be a comparison operator?