认真舞蹈

文章
7
资源
0
加入时间
2年10月21天

pythonrandom_Python的random操作

random中的主要函数有:random.random():获取一个随机的浮点数,范围是在0.0~1.0之间random.uniform():uniform(self, a, b) —— 产生区间内的随机浮点数random.randint():randint(self, a, b) —— 生成区间内(包括端点)的整型数据random.choice():choice(self, seq) —— 随机...