Encode ROT13 code #!/usr/bin/python code = raw_input( Enter the data you wish to be encoded to Base64 ) answer=code.encode( base64 , strict ) print answer Encode Base64 code Cryptography #!/usr/bin/python code = raw_input( Enter the data you wish to be encoded to Base64 ) answer=code.encode( base64 , strict ) print answer