标签:
# -*- 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