1. 程式人生 > >工具包(隨機數)

工具包(隨機數)

隨機數的處理

* 在 Python 中,要使用隨機數,首先需要匯入 **隨機數** 的 **模組** —— “工具包”

```

import random

```

* 匯入模組後,可以直接在 **模組名稱** 後面敲一個 然後按 Tab 鍵,會提示該模組中包含的所有函式。

* `random.randint(a, b)` ,返回 `[a, b]` 之間的整數,包含 `a` 和 `b`
* 例如:

```python
random.randint(12, 20)  # 生成的隨機數n: 12 <= n <= 20   
random.randint(20, 20)  # 結果永遠是 20   
random.randint(20, 10)  # 該語句是錯誤的,下限必須小於上限