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

python 之模块random

时间:2018-02-04 19:35:28      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:class   post   rand   dom   port   随机   roo   print   host   

随机形成字母和数字组成的五位字符码。

[root@localhost python]# vim  timee.py

import random

def coder():
  code = ‘‘
  for i in range(5):
    add = random.choice([random.randrange(10),chr(random.randrange(65,91))])  #数字和字母
    code += str(add)
  print (code)

coder()


运行结果:

[root@localhost python]# python timee.py
NYO6F
[root@localhost python]# python timee.py
MS15V
[root@localhost python]# python timee.py
16SR6
[root@localhost python]# python timee.py
9Z3SW
[root@localhost python]# python timee.py
XN0KW
[root@localhost python]# python timee.py
1PPT9
[root@localhost python]# python timee.py
E25U2

  

python 之模块random

标签:class   post   rand   dom   port   随机   roo   print   host   

原文地址:https://www.cnblogs.com/lixinliang/p/8413718.html

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