我无法弄清楚这个导入做了什么以及如何在 python 代码中使用它。我是 python 新手。
import datasources.google as google
这行代码导入了模块datasources.google
。当您使用 导入整个模块时import whatevermodule
,每次使用该模块中的内容时都必须包含它,如下所示:
datasources.google.dowhatever(thing)
由于datasources.google
真的很长,最好有一个简短的写法。这就是该as google
部分的作用。这意味着您可以改写:
google.dowhatever(thing)
并为您节省大量打字。
您现在可以编写 google.method,而不是编写 datasources.google.method,有关详细信息,请参阅PEP221 ...