How to obfuscate Python code effectively?

I am looking for how to hide my Python source code.

print "Hello World!" 

How can I encode this example so that it isn’t human-readable? I’ve been told to use base64 but I’m not sure how.

Leave a Comment