Skip to content

Instantly share code, notes, and snippets.

@mitchellbusby
Created May 6, 2012 04:23
Show Gist options
  • Save mitchellbusby/2612440 to your computer and use it in GitHub Desktop.
Save mitchellbusby/2612440 to your computer and use it in GitHub Desktop.
not implemented
final = ""
text = raw_input("Enter text: ")
for c in text:
if c == ' ':
final += c
else:
convert = ord(c)
convert -= 27
letter = chr(convert)
final += letter
print letter
print final
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment