摘要: import hashlib import sys def check_md5(src): m = hashlib.md5() with open('src','rb') as fobj: while True: data = fobj.read(4096) if not data: ... 阅读全文