区别python中randrange()和uniform()的小技巧
程序员文章站
2022-04-26 18:50:26
...
从函数签名中我们可以知道:
In [7]: random.randrange? Signature: random.randrange(start, stop=None, step=1, _int=<type 'int'>, _maxwidth=9007199254740992L) Docstring: Choose a random item from range(start, stop[, step]). This fixes the problem with randint() which includes the endpoint; in Python this is usually not what you want. File: /usr/lib/python2.7/random.py Type: instancemethod In [8]: random.uniform? Signature: random.uniform(a, b) Docstring: Get a random number in the range [a, b) or [a, b] depending on rounding. File: /usr/lib/python2.7/random.py Type: instancemethod
randrange 是从 range(start, stop[, step]) 随机挑选一个,生成的一定是 int ;
uniform 是从 [a, b) 或 [a, b] 中生成一个随机数,生成的是 float;
这两个使用场景不一样。
【相关推荐】
1.特别推荐:“php程序员工具箱”V0.1版本下载
2. Python免费视频教程
以上就是区别python中randrange()和uniform()的小技巧的详细内容,更多请关注其它相关文章!
上一篇: php 时间日期函数
下一篇: phpexcel 生成报表
推荐阅读
-
浅谈Python中列表生成式和生成器的区别
-
Python中__init__和__new__的区别详解
-
Python中在for循环中嵌套使用if和else语句的技巧
-
Python中print和return的作用及区别解析
-
Python中内置数据类型list,tuple,dict,set的区别和用法
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
Python3中_(下划线)和__(双下划线)的用途和区别
-
对python中 math模块下 atan 和 atan2的区别详解
-
Python中input和raw_input的一点区别
-
微信小程序事件对象中e.target和e.currentTarget的区别详解