Skip to content

标签:模块

Python 模块详解

模块结构与规范 以下是以内建 sys 模块为例的标准模块模板: #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ 模块文档注释(使用三引号规范) """ __author__ = 'Michael Lia
2025-04-07