摘要: import time import sys import configparser import hashlib config= configparser.ConfigParser() target=0 def encrypt(key, s): b = bytearray(str(s).encod 阅读全文
posted @ 2020-10-07 19:22 克莱比-Kirby 阅读(67) 评论(0) 推荐(0)
摘要: 9.re正则表达式模块,用于字符串的模糊匹配 元字符: 第一:点为通配符 用.表示匹配除了换行符以外的所有字符 import re res=re.findall('a..x','adsxwassxddfr') print(res) 第二:^来匹配最开始的部位 import re res=re.fin 阅读全文
posted @ 2020-10-07 10:42 克莱比-Kirby 阅读(208) 评论(0) 推荐(0)