Skip to content

Instantly share code, notes, and snippets.

@r3dact3d
Created February 1, 2019 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r3dact3d/3c7f8af560013113d8c4d80dfde486d3 to your computer and use it in GitHub Desktop.
Save r3dact3d/3c7f8af560013113d8c4d80dfde486d3 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# brady [r3dact3d]
from sys import argv
myText = ''
argv.pop(0)
for i in argv:
myText = myText +" "+ i
print(myText)
print("Encoding String: " + myText.encode('rot13'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment