Last active
September 4, 2015 03:20
-
-
Save thelatefuture/f6d88cd6e1b22fea108c to your computer and use it in GitHub Desktop.
Pig Latin translator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#一个调换字母顺序的游戏 | |
pyg = 'ay' | |
original = raw_input('Enter a word:') | |
if len(original) > 0 and original.isalpha(): | |
word = original.lower() | |
first = word[0] | |
new_word = word + first + pyg | |
new_word = new_word[1:] | |
print new_word | |
else: | |
print 'empty' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment