摘要:
from hashlib import md5 def encrypt_md5(s): # 创建md5对象 new_md5 = md5() # 这里必须用encode()函数对字符串进行编码,不然会报 TypeError: Unicode-objects must be encoded before 阅读全文
摘要:
输出结果: 阅读全文
摘要:
一、校验数字 1、数字:^[0-9]*$ 2、n位的数字:^\d{n}$ 3、至少n位的数字:^\d{n,}$ 4、m-n位的数字:^\d{m,n}$ 5、带1-2位小数的正数或负数:^(-)?\d+(\.\d{1,2})?$ 6、正数、负数或小数:^(-)?\d+(\.\d+)?$ 7、有两位小数 阅读全文