Python基础-14模块-random模块
Posted josie930813
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础-14模块-random模块相关的知识,希望对你有一定的参考价值。
#eg item=[1,3,5,7,9] random.shuffle(item) print(item)
#实现验证码 import random def v_code(): ret = ‘‘ for i in range(4): num = str(random.randint(0,9)) alf = chr(random.randint(65,122)) s = random.choice([num,alf]) ret += s return ret print(v_code())
以上是关于Python基础-14模块-random模块的主要内容,如果未能解决你的问题,请参考以下文章
Python基础22_模块,collections,time,random,functools