Skip to content

Instantly share code, notes, and snippets.

@slopeofhope81
Created March 21, 2014 20:09
Show Gist options
  • Save slopeofhope81/9695283 to your computer and use it in GitHub Desktop.
Save slopeofhope81/9695283 to your computer and use it in GitHub Desktop.
review python #1
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:] + first + pyg
print new_word
else:
print 'empty'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment