Which special module can you import in Python to get a greeting output (“Hello World!”)?
Hint 1: Try importing a module literally named __hello__.
Hint 2: `import __hello__` might do something interesting.
Solution:
If you execute `import __hello__` in Python, the interpreter will output “Hello world!”. It’s a simple Easter egg in the interpreter demonstrating a friendly greeting.

Leave a Reply