mport MySQLdbtry: conn=MySQLdb.connect(host='localhost',port=3306,user='root',passwd='123456') cur=conn.cursor() cur.execute('create database if not exists .........【阅读全文】
以MD5校验和的方式比较文件,遍历目录,将文件放入record={},在遍历过程中如果发现有相同的文件,则将相同的文件放入dup=[]import hashlibdef checksum(file): fp=open(file) checksum=hashlib.md5() while True: buffer=fp.read(8192) if not buffer:brea.........【阅读全文】