标签:style blog color os 文件 sp div c on
1.获取python模块路径
import os print os.path.dirname(Modulename.__file__)
2.查看帮助
查看python所有的modules:help("modules") 单看python所有的modules中包含指定字符串的modules: help("modules yourstr") 查看python中常见的topics: help("topics") 查看python标准库中的module:import os.path + help("os.path") 查看python内置的类型:help("list") 查看python类型的成员方法:help("str.find") 查看python内置函数:help("open")
3.python中moudle和package
可以把module理解为一个.py文件,package则是一组相关的module或package的集合.
标签:style blog color os 文件 sp div c on
原文地址:http://www.cnblogs.com/sdu20112013/p/3998685.html