标签:字符 返回值 choice ice 模块 随机数 个数 and 随机
import random # 随机数 print(random.randrange(1,2)) # 返回值从列表里拿一个字符 print(random.choice([1,2,3])) # 返回值,从列表里拿N个数据,放在列表里 print(random.sample([1,2,3],2)) # 洗牌 arr = list(range(1,10)) random.shuffle(arr)
标签:字符 返回值 choice ice 模块 随机数 个数 and 随机
原文地址:https://www.cnblogs.com/3-wusen/p/14954459.html