Fix import multi module #24
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "patch-1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Python's import is very flexible and can cover the following situations:
import a
import a, b
import a as b
import a as b, c as d
import a.b
import a.b, c.d
import a.b as c
import a.b as c, d as e
from . import a
from . import a as b
from .a import b
from .a import b as c
from a import *
from a import b
from a import b, c
from a import (b, c)
from a import b as c
from a import b as c, d as e
from a.b import *
from a.b import c
from a.b import c as d
from a.b import c as d, e as f
Thanks!