摘要: import hashlibimport timelarge = 0md5 = hashlib.md5()start = time.time()with open('test.py', 'rb') as f: a = f.read(2048) md5.update(a) large = len(a) + large while len(a) > 0: a =... 阅读全文
posted @ 2018-11-23 18:42 丶丶Ao 阅读(264) 评论(0) 推荐(0)