摘要:
#读EXCEL需要导入xlrd模块 在python控制台pip install xlrd模块import xlrdbook = xlrd.open_workbook('stu3.xls')sheet = book.sheet_by_index(0)# sheet = book.sheet_by_na 阅读全文
摘要:
导入hashlib模块import hashlibs='yulin123456's.encode()#把数字转换成bytes类型m=hashlib.md5(s.encode())print(m.hexdigest())#md5是不可逆的,就是没有办法解密的,网站MD5加密属于撞库,将常用的密码搜集存 阅读全文