Skip to content

Instantly share code, notes, and snippets.

@mitchellbusby
Created May 6, 2012 04:50
Show Gist options
  • Save mitchellbusby/2614366 to your computer and use it in GitHub Desktop.
Save mitchellbusby/2614366 to your computer and use it in GitHub Desktop.
not implemented
final = ""
text = raw_input("Enter text: ")
for i in xrange(len(text)):
if i % 2 != 0:
letter = text[i-1:i]
final += letter
print final
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment