描述
Python數法choice()從列表、元組或字符串中返回一個隨機項。
用法
以下是語法choice()方法 -
choice( seq )
注意− 該函數不可直接訪問,因此需要導入random模塊,然後使用random靜態對象調用該函數。
參數
seq- 這可以是列表、元組或字符串。
返回值
此方法返回一個隨機項目。
示例
下麵的例子展示了 choice() 方法的用法。
#!/usr/bin/python
import random
print "choice([1, 2, 3, 5, 9]):", random.choice([1, 2, 3, 5, 9])
print "choice('A String'):", random.choice('A String')
當我們運行上麵的程序時,它會產生以下結果 -
choice([1, 2, 3, 5, 9]): 2 choice('A String'): n
相關用法
- Python Number cmp()用法及代碼示例
- Python Number ceil()用法及代碼示例
- Python Number cos()用法及代碼示例
- Python Number randrange()用法及代碼示例
- Python Number sqrt()用法及代碼示例
- Python Number acos()用法及代碼示例
- Python Number floor()用法及代碼示例
- Python Number asin()用法及代碼示例
- Python Number round()用法及代碼示例
- Python Number shuffle()用法及代碼示例
- Python Number exp()用法及代碼示例
- Python Number max()用法及代碼示例
- Python Number min()用法及代碼示例
- Python Number sin()用法及代碼示例
- Python Number pow()用法及代碼示例
- Python Number uniform()用法及代碼示例
- Python Number abs()用法及代碼示例
- Python Number degrees()用法及代碼示例
- Python Number hypot()用法及代碼示例
- Python Number seed()用法及代碼示例
注:本文由純淨天空篩選整理自 Python Number choice() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。