摘要:
def add(n, i): return n + i def test(): for i in range(4): yield i g = test() for n in [1, 10]: g = (add(n, i) for i in g) res = list(g) print(res) # 阅读全文
摘要:
JSON 是存储和交换文本信息的语法 用法 >import json 语法 dumps(序列化) 将 Python 对象编码成 JSON 字符串 loads(反序列化) 将已编码的 JSON 字符串解码为 Python 对象 python 原始类型向 json 类型的转化对照表 PythonJSON 阅读全文
摘要:
进制: bin(),oct(),hex() 字符串(str) name=“aaaaa” “” strip split replace indigit,lower,upper,center,count,find,index,join,format,startswith,endswith 列表 (lis 阅读全文
摘要:
正则定义:用一些特殊字符去字符串中匹配我们想要的数据 字符组 正则 说明 [0123456789] 匹配0-9里面 的任意一个 [0-9] 匹配0-9里面 的任意一个 [A-Z] 匹配A-Z里面 的任意一个 [a,z] 匹配a-z里面 的任意一个 [0-9a-zA-Z] 匹配数字,大小写形式的a-z 阅读全文