赞
踩
模块:所谓模块就是一个.py文件,用来存放变量,方法的文件,便于在其他python文件中导入(通过import或from)。
包(package): 包是更大的组织单位,用来组织区别管理多个模块文件。
import 用来导入模块
from 用于从模块中导入方法(全部或部分),也可用as 重命名导入的方法
*import 模块 [as 别名模块]
*import 包.[N包].模块;
注:import 导入 最后一个必须是模块,而不能以包结尾
*from 包.[..包] import 模块
*from 包.模块 import 方法
*from 模块 import 方法。
注:from 包 import *时,受__init__.py中的__all__影响,没有列出来的模块是没法导入引用的。
- from math import pi
- print pi
- import math
- print math.pi
- from sys import argv,path #导入特定的成员
- print('================python from import===================================')
- print('path:',path)
-
- 如果你要使用所有sys模块使用的名字,你可以这样:
-
- from sys import *
- print('path:',path)
- from com.gif.giftest import * # 引入giftest.py 下的全部
- from com.gif.giftest import add # 只引入add函数
- from com.gif.giftest import giftest # 只引入giftest类
-
- print(gif) # giftest.py 模块下的gif变量
- add(1, 2) # 使用giftest.py 模块下add函数
- giftest = giftest() # 实例化giftest.py 模块的giftest类
- giftest.minus(2, 1) # 调用了giftest类的方法
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。