标签: python python-import
以下两个陈述似乎是等价的(假设b是一个子模块):
b
import a.b as c
和
from a import b as c
两者都允许我将a.b.foo称为c.foo。
a.b.foo
c.foo
哪一个更受欢迎?