Skip to content

Commit

Permalink
Pig Latin done
Browse files Browse the repository at this point in the history
  • Loading branch information
Karan Goel committed Jul 11, 2013
1 parent 0626902 commit 7693d42
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Text/piglatin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""
Pig Latin - Pig Latin is a game of alterations played
on the English language game. To create the Pig Latin
form of an English word the initial consonant sound is
transposed to the end of the word and an ay is affixed
(Ex.: "banana" would yield anana-bay). Read Wikipedia
for more information on rules.
"""

word = raw_input('What\'s your word? ').lower()
vowels = 'aeiou'

pig = 'ay'

first = word[0]

if first in vowels:
new = word + pig
else:
new = word[1:] + first + pig

print new

0 comments on commit 7693d42

Please sign in to comment.