Skip to content

Instantly share code, notes, and snippets.

@ThisIsTraian
ThisIsTraian / CodecademyPygLatin.py
Created September 29, 2015 06:34
Solution to Codecademy (http://www.codecademy.com) Python Pig Latin Assignment.
pyg = "ay"
original = raw_input('Enter a word:')
if len(original) > 0 and original.isalpha():
word = original.lower()
first = word[0]
new_word = word[1:len(word)] + first + pyg
print new_word
else: