码迷,mamicode.com
首页 > 其他好文 > 详细

新建模块,导入模块的方法

时间:2016-05-22 21:24:37      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

新建模块:

 

# -*- coding: utf-8 -*-
class module1:
    def __init__(self):
        print(self)

    def function1(self):
        print(self)

    def function2(self):
        print(self)

要当模块调用的py文件一般是保存在系统目录:

…\Lib\site-packages

当然也可以保存在其他位置,例如:

C:\module1.py

导入模块:

# -*- coding: utf-8 -*-
import sys
sys.path.append(C:\\module1.py)
import module1
module1.module1.function1(调用模块成功!)

新建模块,导入模块的方法

标签:

原文地址:http://www.cnblogs.com/blog-3123958139/p/5517821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!