1,正则复习,re.S,这个在用的最多,re.M多行模式,这个主要改变^和$的行为,每一行都是新串开头,每个回车都是结尾.re.L 在Windows和linux里面对一些特殊字符有不一样的识别,re.L 是根据当前的操作系统来识别,这个不推荐使用,他就不一样了.正常还是走我们的记得意思,re.U 这个对于ASCII码是一样的,对于中文才使用Unicode,re.X和re.M有点像 import re ret = re.findall('.*\d+','hsd739y8kk \ns99sihf99…
一.模块 模块的本质就是一个.py 文件. 导入和调用模块: import module from module import xx from module.xx.xx import xx as rename from module.xx.xx import * 模块调用时发生了三件事: import 1.创建名称空间 2.执行模块文件 3.在执行文件中创建一个名称 指向模块的名称空间 from 1.创建名称空间 2.执行模块文件 3.把模块中的名称复制到当前名称空间 注意:模块一旦被调用,即…
模块源码: Source code: Lib/random.py 文档:http://docs.python.org/2/library/random.html 常用方法: random.random() Return the next random floating point number in the range [0.0, 1.0). random.randint(a, b)包括b Return a random integer N such that a <= N <= b. ran…