标签:之间 choice import style 随机 and 字符转换 实现 一个
#随机模块。random随机数 import random print(random.random())#打印随机数,0-1 print(random.randint(1,3))#打印1和3之间的数 print(random.randrange(1,4))#1-4 print(random.choice([1,2,3,4]))#选一个 print(random.sample([1,2,3,4],2))#选2个 res=[1,2,3,4] random.shuffle(res)#打乱 print(res) def v_code(): ret=[] for i in range(5): num=random.randint(0,9)#整数随机 alf=chr(random.randint(65,122))#字母随机 res=str(random.choice([num,alf]))#str实现字符转换 ret+=res return ret print(v_code())
标签:之间 choice import style 随机 and 字符转换 实现 一个
原文地址:https://www.cnblogs.com/wfl9310/p/9015649.html