2018年2月25日

hashlib

摘要: import hashlib obj = hashlib .md5("sadsa".encode("utf8")) obj .update("hello".encode("utf8") ) print(obj.hexdigest()) #5d41402abc4b2a76b9719d911017c59 阅读全文

posted @ 2018-02-25 22:26 python_an 阅读(92) 评论(0) 推荐(0) 编辑

configparser

摘要: import configparser config = configparser .ConfigParser () config["DEFULT"] = {"a":"1", "b":"2", "c":"3"} config["dsadsad.org"] = {} config ["dsadsad. 阅读全文

posted @ 2018-02-25 21:37 python_an 阅读(144) 评论(0) 推荐(0) 编辑

正则

摘要: 功能:模糊匹配(针对字符串操作) re由c语言编写,效率也会快很多 .可以指代任意字符除了换行符 ^开头开始匹配 $结尾匹配 *匹配0到无穷次 +代匹配1到无穷次 ?匹配0或者1次 {}自定义匹配 import re print(re.findall("alex*","464ale") ) #['a 阅读全文

posted @ 2018-02-25 15:27 python_an 阅读(170) 评论(0) 推荐(0) 编辑

导航