摘要: import random import string def GenKey(length): chars = string.ascii_letters + string.digits return ''.join([random.choice(chars) for i in range(length)]) def SaveKey(content): f = op... 阅读全文
posted @ 2017-03-14 15:14 BigZero 阅读(1457) 评论(0) 推荐(0) 编辑