美文网首页生活不易 我用python
使用python生成随机密码

使用python生成随机密码

作者: DongBold | 来源:发表于2017-04-24 22:03 被阅读1215次

生成随机密码或者激活码之类, python两三行代码就能搞定

#!/usr/bin/env python3

import random
import string

def generate_activation_code(len=16, n=200):
    '''生成n个长度为len的随机序列码'''
    random.seed()
    chars = string.ascii_letters + string.digits
    return [''.join([random.choice(chars) for _ in range(len)]) for _ in range(n)]


if __name__ == '__main__':
    for index, code in enumerate(generate_activation_code(), 1):
        print(index, code)

相关文章

网友评论

    本文标题:使用python生成随机密码

    本文链接:https://www.haomeiwen.com/subject/wwcmzttx.html