码迷,mamicode.com
首页 > 移动开发 > 详细

Python生成随机五位数——模仿手机验证码

时间:2019-05-05 14:44:08      阅读:514      评论:0      收藏:0      [点我收藏+]

标签:随机数   调用函数   range   python   字符   导入   coding   随机   模仿   

使用Python生成随机的五位手机验证码。

# -*- coding:utf-8 -*-

#生成五位随机数,模仿手机验证码

#导入random库,可以生成随机数
import random

def ran():
     L = []
     M = []
#通过遍历5次,生成五个元素,并插入列表L
     for i in range(5):
             L.append(random.randint(0,9))
             if len(L) >= 5:
                     break

#通过遍历将L的五个元素由数字转为字符串,导入空列表M,并使用join方法合成为字符串     
     for d in L:
             M.append(str(d))
     S = ‘‘ .join(M)

     print(S)

#调用函数ran()
ran()

Python生成随机五位数——模仿手机验证码

标签:随机数   调用函数   range   python   字符   导入   coding   随机   模仿   

原文地址:https://blog.51cto.com/11433338/2389104

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