從函式簽章中我們可以知道:
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中文網其他相關文章!