标签:
---恢复内容开始---
文件目录结构:
----PythonTest
|----main.py
|----showutil.py
|----utils
|----__init__.py
|----logutil.py
main.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from showutil import * from utils.logutil import * print(‘我是主入口文件!‘) # 调用同一目录下的ShowUtil工具类 xs = ShowUtil() xs.show() # 调用别人包中的LogUtil工具类 dy = LogUtil() dy.log()
showutil.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys class ShowUtil(object): def show(self): print(‘我是显示工具类‘)
logutil.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- class LogUtil(object): def log(self): print(‘我是日志工具类!‘)
---恢复内容结束---
标签:
原文地址:http://www.cnblogs.com/ylzx/p/5865404.html