标签:nbsp img rom bsp import 完成 导入 导入模块 遇到
记录一下今天在项目中 遇到python导入模块的问题,提醒自己以后注意:
如图在views同级目录下定义了common包
有两种调用方法:
1.
1 import common.common 2 b = common.common.f(3) 3 print(b)
这种方式调用时要写全名
2.
1 from common import common 2 b = common.f(3) 3 print(b)
这种方式通过模块名+函数可完成调用
标签:nbsp img rom bsp import 完成 导入 导入模块 遇到
原文地址:http://www.cnblogs.com/whigo/p/7892500.html