aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/RulePackage/getStart/getDeeper
diff options
context:
space:
mode:
Diffstat (limited to 'docs/RulePackage/getStart/getDeeper')
-rw-r--r--docs/RulePackage/getStart/getDeeper/Module.md14
-rw-r--r--docs/RulePackage/getStart/getDeeper/Package.md12
-rw-r--r--docs/RulePackage/getStart/getDeeper/object.md8
3 files changed, 34 insertions, 0 deletions
diff --git a/docs/RulePackage/getStart/getDeeper/Module.md b/docs/RulePackage/getStart/getDeeper/Module.md
new file mode 100644
index 00000000..91438ee5
--- /dev/null
+++ b/docs/RulePackage/getStart/getDeeper/Module.md
@@ -0,0 +1,14 @@
+---
+title: Module 模块
+---
+!!! info
+ 此对象是 Python 代码的一种组织单位。各模块具有独立的命名空间,可包含任意 Python 对象。模块可通过 [importing] 操作被加载到 Python 中。
+
+ 另见 [package]。
+
+ [importing]: https://docs.python.org/zh-cn/3/glossary.html#term-importing
+ [package]: ../Package
+
+
+
+:material-information-outline:{ title="Important information" }
diff --git a/docs/RulePackage/getStart/getDeeper/Package.md b/docs/RulePackage/getStart/getDeeper/Package.md
new file mode 100644
index 00000000..c683d5d6
--- /dev/null
+++ b/docs/RulePackage/getStart/getDeeper/Package.md
@@ -0,0 +1,12 @@
+---
+title: Package 包
+---
+
+!!! info
+ 一种可包含子模块或递归地包含子包的 Python [module]。 从技术上说,包是具有 __path__ 属性的 Python 模块。
+
+ 另参见 [regular package] 和 [namespace package]。
+
+ [module]: ../Module
+ [regular package]: https://docs.python.org/zh-cn/3/glossary.html#term-regular-package
+ [namespace package]: https://docs.python.org/zh-cn/3/glossary.html#term-namespace-package \ No newline at end of file
diff --git a/docs/RulePackage/getStart/getDeeper/object.md b/docs/RulePackage/getStart/getDeeper/object.md
new file mode 100644
index 00000000..f9a801a6
--- /dev/null
+++ b/docs/RulePackage/getStart/getDeeper/object.md
@@ -0,0 +1,8 @@
+---
+title: object 对象
+---
+
+!!! info
+ 任何具有状态(属性或值)以及预定义行为(方法)的数据。object 也是任何 [new-style class] 的最顶层基类名。
+
+ [new-style class]: https://docs.python.org/zh-cn/3/glossary.html#term-new-style-class \ No newline at end of file