import hashlib
in_file = open('in.txt','r');
out_file = open('out.txt','w');
m = hashlib.md5()
for line in in_file:
p = line.index(',');
t1 = line[0:p]
t2 = line[p:]
m.update(t1.encode("gb2312"))
out_file.write(m.hexdigest()+t2)
速度没试过,你可以自己试试看。
上传文件,处理完给你