write a Pig Latin translator Pig Latin is a language game, where you move the first letter of the word to the end and add “ay.” So python become ythonpay. just like this. the code print 'Welcome to the Pig Latin translator!'
name = raw_input("Enter a word:")
if len(name) > 0 and name.isalpha():
word = name.lower()
first = word[0]
new_word = word + first
new_word = new_word[1:len(new_word)]
print name
print first
print new_word
else:
print "the name is empty"
3.the character
a = "Simple"
print a[0]
print a[1:4]