浮點範圍內的隨機數產生
random.randrange() 函數僅限於整數,讓您想知道如何獲得浮點值範圍內的隨機數。
解決方案在於使用 random.uniform(a, b)。此方法接受 float 參數並產生指定範圍內的隨機數:
<code class="python">import random print(random.uniform(1.5, 1.9)) # Output: 1.8733202628557872</code>
這可確保您獲得所需範圍內的隨機浮點數,解決 random.randrange() 的限制。
以上是如何使用 Python 產生一定範圍內的隨機浮點數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!