Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 27, 2017 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/b59e0c63ecc3f6f07e0751e02220156f to your computer and use it in GitHub Desktop.
Save codecademydev/b59e0c63ecc3f6f07e0751e02220156f to your computer and use it in GitHub Desktop.
Codecademy export
print 'Welcome to the Pig Latin Translator!'
# Start coding here!
original = raw_input('Enter a word:')
empty_string = ""
if len(empty_string) > 0 and original.isalpha():
print original
else:
print 'empty'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment