Skip to content

Instantly share code, notes, and snippets.

@phenomist
Created July 8, 2017 01:46
Show Gist options
  • Save phenomist/31f14c8e3c1a08d34e9c96fb9a6b260e to your computer and use it in GitHub Desktop.
Save phenomist/31f14c8e3c1a08d34e9c96fb9a6b260e to your computer and use it in GitHub Desktop.
Obfuscated Hello World printer #2.
import sys
def hello_world():
return ' '.join(map(lambda x:chr(ord(x[0])&223)+x[1:],sys._getframe().f_code.co_name.split("_")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment