Python之路26-random模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之路26-random模块相关的知识,希望对你有一定的参考价值。
import random #打印一个随机的小数 print(random.random()) #打印一个范围的随机数 print(random.randint(1,5)) #打印1-4,步长为2的随机数 print(random.randrange(1,5,2)) #range(10)中取5个随机数 print(random.sample(range(10),5)) checkcode = "" for i in range(4): if i == random.randrange(0,4): temp = chr(random.randint(65,90)) else: temp = random.randint(0,9) checkcode += str(temp) print(checkcode)
本文出自 “八英里” 博客,请务必保留此出处http://5921271.blog.51cto.com/5911271/1897285
以上是关于Python之路26-random模块的主要内容,如果未能解决你的问题,请参考以下文章