码迷,mamicode.com
首页 > 编程语言 > 详细

Python学习之路:random模块

时间:2017-12-25 15:03:47      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:模块   dom   port   tmp   com   字母   class   验证   python学习   

技术分享图片

技术分享图片

#随机生成4位数字的验证码
# import random
#
# checkcode=‘‘
#
# for i in range(4):
#     current=random.randint(1,9)
#     checkcode+=str(current)
# print(checkcode)

#随机生成4位字母和数字组合的验证码
import random
checkcode=‘‘
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)
    checkcode+=str(tmp)
print(checkcode)

 

Python学习之路:random模块

标签:模块   dom   port   tmp   com   字母   class   验证   python学习   

原文地址:http://www.cnblogs.com/xiaobai005/p/8109025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!