美文网首页
Python生成随机密码

Python生成随机密码

作者: 杨建林 | 来源:发表于2018-08-01 14:01 被阅读0次
    import random
    
    number = 2 #生成密码数量
    length = 12 #生成密码长度
    
    print('''
    Password Generator
    ==================
    ''')
    
    chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@£$%^&*().,?0123456789'
    
    print('\nhere are your passwords:')
    
    for pwd in range(number):
      password = ''
      for c in range(length):
        password += random.choice(chars)
      print(password)
    

    相关文章

      网友评论

          本文标题:Python生成随机密码

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