码迷,mamicode.com
首页 > 其他好文 > 详细

整理day03

时间:2015-06-12 00:53:53      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

随机数和随机验证码

#!/usr/bin/env python
# _*_ coding:utf-8 _*

import random

temp = ‘‘
for i in range(4):
    rm = random.randrange(0,3)
    if rm !=1:
        temp = temp + chr(random.randrange(65,90))
    else:
        temp = temp + str(random.randrange(0,9))

print temp

 

 

 

random

 

整理day03

标签:

原文地址:http://www.cnblogs.com/loveDayPin/p/4570486.html

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