python random函数sample_Python random.sample()用法及代码示例
sample()是Python中隨機模塊的內(nèi)置函數(shù),可返回從序列中選擇的項目的特定長度列表,即列表,元組,字符串或集合。用于隨機抽樣而無需更換。
用法: random.sample(sequence, k)
參數(shù):
sequence:可以是列表,元組,字符串或集合。
k:一個整數(shù)值,它指定樣本的長度。
返回:k長度從序列中選擇的新元素列表。
代碼1:sample()函數(shù)的簡單實現(xiàn)。
# Python3 program to demonstrate
# the use of sample() function .
# import random
from random import sample
# Prints list of random items of given length
list1 = [1, 2, 3, 4, 5]
print(sample(list1,3))
輸出:
[2, 3, 5]
代碼2:sample()函數(shù)的基本用法。
# Python3 program to demonstrate
# the use of sample() function .
# import random
import random
# Prints list of random items of
# length 3 from the given list.
list1 = [1, 2, 3, 4, 5, 6]
print("With list:", random.sample(list1, 3))
# Prints list of random items of
# length 4 from the given string.
string = "GeeksforGeeks"
print("With string:", random.sample(string, 4))
# Prints list of random items of
# length 4 from the given tuple.
tuple1 = ("ankit", "geeks", "computer", "science",
"portal", "scientist", "btech")
print("With tuple:", random.sample(tuple1, 4))
# Prints list of random items of
# length 3 from the given set.
set1 = {"a", "b", "c", "d", "e"}
print("With set:", random.sample(set1, 3))
輸出:
With list:[3, 1, 2]
With string:['e', 'f', 'G', 'G']
With tuple:['ankit', 'portal', 'geeks', 'computer']
With set:['b', 'd', 'c']
注意:每次返回隨機項目時,輸出都會有所不同。
代碼3:引發(fā)異常
如果樣本大小(即k)大于序列大小,則會引發(fā)ValueError。
# Python3 program to demonstrate the
# error of sample() function.
import random
list1 = [1, 2, 3, 4]
# exception raised
print(random.sample(list1, 5))
輸出:
Traceback (most recent call last):
File "C:/Users/user/AppData/Local/Programs/Python/Python36/all_prgm/geeks_article/sample_method_article.py", line 8, in
print(random.sample(list1, 5))
File "C:\Users\user\AppData\Local\Programs\Python\Python36\lib\random.py", line 317, in sample
raise ValueError("Sample larger than population or is negative")
ValueError:Sample larger than population or is negative
總結(jié)
以上是生活随笔為你收集整理的python random函数sample_Python random.sample()用法及代码示例的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ipguard网络控制策略详解
- 下一篇: 《Python编程从入门到实践》第五章4