How does "import __hello__" work?

Viewed 4832

Recently I've come across this "Hello world" Python program:

>>> import __hello__
Hello world!

I wonder how it works and how to view the source code of the __hello__ module.

1 Answers
Related