1. string 模块

import string
print(string.ascii_lowercase) #取所有的英文小写字母
print(string.ascii_uppercase) #取所有的大写字母
print(string.digits) #所有数字
print(string.ascii_letters) #所有字母
print(string.punctuation) # 取所有标点

2. random模块
print(random.randint)#随机整数
print(random.choice)#随机选择一个元素

l = [1,2,3,4]
s = "a,c,d,f"
# print(random.choice(s))
# print(random.sample(s,3)) #随机选择几个元素
print(random.shuffle(l))# 打乱顺序,只能传list;没有返回值

print(random.uniform(1,20)) #指定范围,随机取小数

f= random.uniform(1,20)
print(round(f,3)) #保留小数点后几位小数
posted on 2018-11-27 20:47  徐儿  阅读(96)  评论(0编辑  收藏  举报