Last active
November 23, 2020 14:57
-
-
Save 4383/3713d90485102154c165b19a6601e936 to your computer and use it in GitHub Desktop.
Python ROT13 converter / deconverter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import string #fixed typo was using | |
text = str(input('tip your text to convert: ', )) | |
rot13 = string.maketrans( | |
"ABCDEFGHIJKLMabcdefghijklmNOPQRSTUVWXYZnopqrstuvwxyz", | |
"NOPQRSTUVWXYZnopqrstuvwxyzABCDEFGHIJKLMabcdefghijklm") | |
string.translate(text, rot13) | |
# Example | |
# 'Hello World! | |
# 'Uryyb Jbeyq! |
@Michael-Schulze thanks for the heads-up.
Indeed this is an old gist not really updated since its creation and surely only compatible with python2.
I'll try to update it soon with your advices.
Thanks
Hi,
yes I know. I was searching for a similar thing and found your code and struggled a little bit with it. So I decided to give a comment, how to get it working.
@Michael-Schulze Much appreciated, thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a comment, this code example above is for Python2.
In Python 3 there is no need (not possible) to import string with maketrans.
There the code could look like this:
text = str(input('tip your text to convert: ', ))
normalAlpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
rot13Alpha = "NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm"
text.translate(str.maketrans(normalAlpha,rot13Alpha))