python3.4中怎么导入

2024-12-31 23:07:44
推荐回答(2个)
回答1:

在test.py中import test,运行

输出的结果是:
This is a test
说明,在import这个package的时候,该类自动就实例化了, 这样, 对于你的问题,应该直接调用就好~

回答2:

import xxx
from xxx import xxx