Skip to content

Instantly share code, notes, and snippets.

@kappter
kappter / PygLatin
Created April 2, 2014 15:10
Pyg or Pig Latin code for Python...
# PygLatin Converter Code
pyg = 'ay'
original = raw_input('Enter a word:')
if len(original) > 0 and original.isalpha():
word = original.lower()
first = word[0]
if first == ('a' or 'e' or 'i' or 'o' or 'u'):
new_word = word + pyg
print new_word