Python基础知识:python模块的引入方法

Python开发(http://www.maiziedu.com/course/python-px/中用关键字import来引入某个模块,也就类似于C++include某个头文件。比如要引用模块math,就可以在文件最开始的地方用import math来引入。在调用math模块中的函数时,必须这样引用,详情见代码:

>>>improt math

>>>math.sin(0)

导入自己的模块:

#hello.pyprint "Hello world!"

将上面的文件保存在c:/python下面:

import sys

sys.path.append('c:/python')

 

>>>import hello

Hello world!

记住只导入一次:

>>>import helloHello world!

 

>>>import hello#

模块用于定义函数:

#hello2.pydef hello():

  print "Hello, world!"

 

>>>import hello2

>>>hello2.hello()

Hello, world!

下面就是一些杂项:

包 
为了更好的组织模块,可以将他们分组,即包。

import contantsprint contants.PI

help帮助

>>>help(copy.copy)

 

你可能感兴趣的:(Python基础知识:python模块的引入方法)