0
print "Welcome to the English to Pig Latin translator!"
original = raw_input ("please, type a word")
if len ('original') > 0 and original.isalpha():
print original
else:
print "empty"
我想要做的只是確保用戶輸入有超過0個字符,並確保所有字母,但是當我寫一個數字它打印的數字,不是「空」在IF中使用IF語句以及AND,OR或NOT