Skip to content

Commit facf946

Browse files
author
guiyin.xiong
committed
Merge branch 'master' of https://github.com/sslinux/MagePython
2 parents dc6167c + 2ea5bab commit facf946

72 files changed

Lines changed: 2197 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_book/comyn_lesson/_book/Dict.mmap

31.2 KB
Binary file not shown.

_book/comyn_lesson/_book/Set.mmap

31.3 KB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Binary Data Services(二进制数据服务)
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Built-in Constants(内置常数)
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Built-in Exceptions(内置异常)
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Built-in Functions(内置函数)
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Built-in Types(内置类型)
2+
Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
2+
# The Python Standard Library
3+
4+
## Built-in Functions(内置函数)
5+
## Built-in Constants(内置常数)
6+
## Built-in Types(内置类型)
7+
## Built-in Exceptions(内置异常)
8+
## Text Processing Services(文本处理服务)
9+
## Binary Data Services(二进制数据服务)
10+
## Data Types(数据类型)
11+
## Numeric and Mathematical Modules(数值和数学的模块)
12+
```
13+
numeric [nuː'merɪk]
14+
n. 数;数字
15+
adj. 数值的(等于numerical);数字的
16+
```
17+
18+
```
19+
mathematical [mæθ(ə)'mætɪk(ə)l]
20+
adj. 数学的,数学上的;精确的
21+
```
22+
23+
## Functional Programming Modules(函数式编程模块)
24+
## File and Directory Access(文件和目录访问)
25+
## Data Persistence(数据持久化)
26+
27+
```
28+
Persistence [pə'sɪst(ə)ns]
29+
n. 持续;固执;存留;坚持不懈;毅力
30+
在计算机领域一般是表示持久化存储;
31+
```
32+
33+
## Data Compression and Archiving(数据压缩和归档)
34+
35+
```
36+
compression [kəm'preʃ(ə)n]
37+
n. 压缩,浓缩;压榨,压迫
38+
```
39+
40+
```
41+
archiving [ɑː'kəvɪŋ]
42+
n. 归档
43+
v. 把…收集归档(archive的现在分词)
44+
```
45+
46+
## File Formats(文件格式化)
47+
## Cryptographic Services(加密服务)
48+
49+
```
50+
cryptographic [,krɪptə'græfɪk]
51+
adj. 关于暗号的,用密码写的
52+
```
53+
54+
## Generic Operating System Services(一般操作系统服务)
55+
```
56+
generic [dʒɪ'nerɪk]
57+
adj. 类的;一般的;属的;非商标的
58+
```
59+
* os
60+
* platform
61+
* io
62+
* logging
63+
* logging.config
64+
* loggin.handlers
65+
66+
67+
## Interprocess Communication and Networking(进程间通信和网络)
68+
69+
```
70+
Interprocess
71+
n. 进程间
72+
adj. 进程间的
73+
```
74+
* socket
75+
* ssl
76+
* select
77+
* selectors
78+
79+
## Internet Data Handling(互联网数据处理)
80+
```
81+
handling ['hændlɪŋ]
82+
n. 处理
83+
adj. 操作的
84+
v. 负责;对待(handle的ing形式);触摸
85+
```
86+
* email
87+
* json
88+
* mailbox
89+
* mimetypes
90+
* binhex
91+
92+
## Structured Markup Processing Tools(结构化标记处理工具)
93+
* html
94+
* xml
95+
96+
## Internet Protocols and Support(互联网协议和支持)
97+
* webbrowser
98+
* cgi
99+
* wsgiref
100+
* urllib
101+
* http
102+
* http.client
103+
* ftplib
104+
* poplib
105+
* imaplib
106+
* nntplib
107+
* smtplib
108+
* smtpd
109+
* telnetlib
110+
* socketserver
111+
* ipaddress
112+
113+
## Software Packaging and Distribution(软件打包和发布)
114+
* distutils
115+
* ensurepip
116+
* venv
117+
* zipapp
118+
119+
## Python Runtime Services(Python运行时服务)
120+
* sys
121+
* sysconfig
122+
* builtins
123+
124+
## internationalization(国际化)
125+
```
126+
internationalization ['ɪntə,næʃənəlaɪ'zeɪʃən]
127+
n. 国际化
128+
```
129+
* gettext
130+
* locale
131+
132+
## Program Frameworks(编程框架)
133+
* turtle
134+
* cmd
135+
* shlex
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Cryptographic Services(加密服务)
2+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Data Compression and Archiving(数据压缩和归档)
2+

0 commit comments

Comments
 (0)