Python has gotten another easter egg from the module __hello__ or __phello__. When importing that module, it'll print "Hello World". Like this:

>>> import __hello__
Hello World!
>>> import __phello__
Hello world!