python生成随机用户名及密码方法

python生成随机用户名及密码方法:

方案一:

import random

global userName,userPassword                                                   #为了便于使用,定义为全局变量
userName = ''
userPassword = ''

def get_userNameAndPassword():
    global userName, userPassword
    usableName_char = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+=-><:}{?/" #可作为用户名的字符
    usablePassword_char ="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_.1234567890"  #可作为密码的字符,根据所需可适当增减
    e_userName = []                   #定义一个临时List变量,使用list.append添加字符
    e_userPassword = []
    for i in range(8):
        e_userName.append(random.choice(usableName_char))               

    for j in range(6):
        e_userPassword.append(random.choice(usablePassword_char))

    print"e_userName = ", e_userName                        #输出用户名字符list    
    print"e_userPassword = ", e_userPassword                #输出密码字符list
        
    userName = ''.join(e_userName)
    userPassword = ''.join(e_userPassword)
try: 
    get_userNameAndPassword()
    print "用户名:", userName
    print "密码:", userPassword
except Exception, e:
    print e.reason

程序输出:

e_userName =  ['q', 'M', '2', 'R', 'B', '}', '6', '=']
e_userPassword =  ['T', 'O', '4', 'C', 'H', '.']
用户名: qM2RB}6=
密码: TO4CH.


方案二(省去中间变量):

#coding=utf-8

import random

global userName,userPassword                                                  #为了便于后面使用,定义为全局变量
userName = ''
userPassword = ''

def get_userNameAndPassword():
    global userName, userPassword
    #8位用户名及6位密码
    userName = ''.join(random.sample("1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+=-><:}{?/",8))
    userPassword = ''.join(random.sample("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_.1234567890",6))
try: 
    get_userNameAndPassword()
    print "用户名:", userName
    print "密码:", userPassword
except Exception, e:
    print e.reason

程序输出:

用户名: GweV?2um
密码: fwiOZL

常用第二种方法,直观简便。
注:(本例在python2.7下测试正常运行。)


  • 3
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值