random
模塊用於在Python中生成隨機數。實際上不是隨機的,而是用於生成偽隨機數的。這意味著可以確定這些隨機生成的數字。
getrandbits()
getrandbits()方法的random
模塊用於返回具有指定位數的整數。結果中所需的位數作為方法中的參數傳遞。
例子:
Input:getrandbits(4) Output:14 (the binary equivalent of 14 is 1110 which has 4 bits) Input:getrandbits(16) Output:60431 (the binary equivalent of 14 is 1110110000001111 which has 16 bits)
範例1:
# import the random module
import random
# a random number with 4 bits
print(random.getrandbits(4))
# a random number with 16 bits
print(random.getrandbits(16))
輸出:
10 49195
範例2:
# import the random module
import random
# 5 random number with 4 bits
for i in range(4):
print(random.getrandbits(4))
輸出:
10 0 1 14
相關用法
注:本文由純淨天空篩選整理自Yash_R大神的英文原創作品 random.getrandbits() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。