08 自定义模块 基本使用

基本使用

  • 编写代码
utils
	- my.py
    - encrypt.py
db.py
app.py (主程序)
  • 导入模块
import db
from utils import my
from utls import encrypt

#导入后调用方法
db.xx()
my.xx()
encrypt.xx()
posted @ 2024-09-28 08:38  jhchena  阅读(5)  评论(0编辑  收藏  举报