lmgsanm

每天学习一点,每天进步一点点…… Tomorrow is another beatifull day

导航

2018年1月29日

python模块:xml.dom.minidom

摘要: 1 """Simple implementation of the Level 1 DOM. 2 3 Namespaces and other minor Level 2 features are also supported. 4 5 parse("foo.xml") 6 7 parseStrin 阅读全文

posted @ 2018-01-29 22:27 lmgsanm 阅读(1228) 评论(0) 推荐(0) 编辑

python模块:xml.etree.ElementTree

摘要: 1 """Lightweight XML support for Python. 2 3 XML is an inherently hierarchical data format, and the most natural way to 4 represent it is with a tree. 阅读全文

posted @ 2018-01-29 22:25 lmgsanm 阅读(634) 评论(0) 推荐(0) 编辑

python模块:xml

摘要: 1 """Core XML support for Python. 2 3 This package contains four sub-packages: 4 5 dom -- The W3C Document Object Model. This supports DOM Level 1 + 6 阅读全文

posted @ 2018-01-29 22:19 lmgsanm 阅读(131) 评论(0) 推荐(0) 编辑

python模块:random

摘要: 1 """Random variable generators. 2 3 integers 4 5 uniform within range 6 7 sequences 8 9 pick random element 10 pick random sample 11 pick weighted ra 阅读全文

posted @ 2018-01-29 22:18 lmgsanm 阅读(2103) 评论(0) 推荐(0) 编辑

python模块:time

摘要: 1 # encoding: utf-8 2 # module time 3 # from (built-in) 4 # by generator 1.145 5 """ 6 This module provides various functions to manipulate time value 阅读全文

posted @ 2018-01-29 22:17 lmgsanm 阅读(328) 评论(0) 推荐(0) 编辑

python模块:datetime

摘要: 1 # Stubs for datetime 2 3 # NOTE: These are incomplete! 4 import sys 5 from typing import Optional, SupportsAbs, Tuple, overload 6 7 MINYEAR = 0 8 MA 阅读全文

posted @ 2018-01-29 22:16 lmgsanm 阅读(228) 评论(0) 推荐(0) 编辑

python模块:json

摘要: 1 r"""JSON (JavaScript Object Notation) <http://json.org> is a subset of 2 JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data 3 inter 阅读全文

posted @ 2018-01-29 22:12 lmgsanm 阅读(273) 评论(0) 推荐(0) 编辑

python模块:pickle

摘要: 1 """Create portable serialized representations of Python objects. 2 3 See module copyreg for a mechanism for registering custom picklers. 4 See modul 阅读全文

posted @ 2018-01-29 22:11 lmgsanm 阅读(994) 评论(0) 推荐(0) 编辑

python模块:shelve

摘要: 1 """Manage shelves of pickled objects. 2 3 A "shelf" is a persistent, dictionary-like object. The difference 4 with dbm databases is that the values 阅读全文

posted @ 2018-01-29 21:54 lmgsanm 阅读(348) 评论(0) 推荐(0) 编辑

python模块:shutil

摘要: 1 """Utility functions for copying and archiving files and directory trees. 2 3 XXX The functions here don't copy the resource fork or other metadata 阅读全文

posted @ 2018-01-29 21:42 lmgsanm 阅读(280) 评论(0) 推荐(0) 编辑

python模块:sys

摘要: 1 # encoding: utf-8 2 # module sys 3 # from (built-in) 4 # by generator 1.145 5 """ 6 This module provides access to some objects used or maintained b 阅读全文

posted @ 2018-01-29 21:37 lmgsanm 阅读(447) 评论(0) 推荐(0) 编辑