摘要: 需要导入Resdis模块 阅读全文
posted @ 2019-01-16 17:12 yulinlin_coding 阅读(534) 评论(0) 推荐(0) 编辑
摘要: #读EXCEL需要导入xlrd模块 在python控制台pip install xlrd模块import xlrdbook = xlrd.open_workbook('stu3.xls')sheet = book.sheet_by_index(0)# sheet = book.sheet_by_na 阅读全文
posted @ 2019-01-16 17:05 yulinlin_coding 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 导入hashlib模块import hashlibs='yulin123456's.encode()#把数字转换成bytes类型m=hashlib.md5(s.encode())print(m.hexdigest())#md5是不可逆的,就是没有办法解密的,网站MD5加密属于撞库,将常用的密码搜集存 阅读全文
posted @ 2019-01-16 15:57 yulinlin_coding 阅读(332) 评论(0) 推荐(0) 编辑