标签:sam 随机 字符串 int 常用模块 dom 修改 form shuf
import random,string print(string.printable) print(random.randint(1,10)) #随机取整数 print(round(random.uniform(1,99),2)) #随机小数 print(random.choice([1,2,3,4])) #只能随机取一个元素 print(random.sample(string.printable,5)) #随机取N个元素,返回的是一个list #洗牌 pickts = [‘A‘,‘J‘,‘K‘,‘Q‘,2,3,4,5,6] random.shuffle(pickts) #只能传一个list 因为字符串不能修改 print(pickts)
标签:sam 随机 字符串 int 常用模块 dom 修改 form shuf
原文地址:https://www.cnblogs.com/nuobao/p/9089727.html