VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python3基础之python随机验证码(数字和字母组合)

import random

# 生成随机验证码
# 数字验证码

check_code = ''

for i in range(4):
    current = random.randint(1, 9)
    check_code += str(current)

print(check_code)

# 随机字母+数字验证码

check_code = ''

for i in range(4):
    current = random.randrange(0, 4)
    if current == i:
        tmp = chr(random.randint(65, 90))
    else:
        tmp = random.randint(0, 9)
    check_code += str(tmp)
print(check_code)

相关教程