Skip to content

Instantly share code, notes, and snippets.

@komly
Last active August 29, 2015 14:21
Show Gist options
  • Save komly/a0890e0f7731d4ffad12 to your computer and use it in GitHub Desktop.
Save komly/a0890e0f7731d4ffad12 to your computer and use it in GitHub Desktop.
Caesar chipher python oniliner
"".join([chr((i - ord('A') + 3) % 26 + ord('A')) for i in map(ord, 'SAMPLE')])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment