Last active
August 29, 2015 14:23
-
-
Save evernick/b23d9e0d4a02a0303a7d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| if __name__ == "__main__": | |
| data = "test" | |
| encode_string = data.encode('base64') # Base64 Encoding | |
| print "encode string :", encode_string | |
| decode_string = encode_string.decode('base64') # Base64 Decoding | |
| print "decode string :", decode_string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment