标签: python import module
最近我遇到了这个" Hello world" Python程序:
>>> import __hello__ Hello world!
我想知道它是如何工作的以及如何查看__hello__模块的源代码。
__hello__
答案 0 :(得分:7)
__hello__是frozen module,旨在作为冻结模块支持的测试用例。它是source code由Python冻结实用程序自动生成。