📜  Python中的 random.getrandbits()

📅  最后修改于: 2022-05-13 01:55:51.027000             🧑  作者: Mango

Python中的 random.getrandbits()

random模块用于在Python中生成随机数。实际上不是随机的,而是用于生成伪随机数。这意味着可以确定这些随机生成的数字。

随机.getrandbits()

random模块的getrandbits()方法用于返回具有指定位数的整数。结果中所需的位数作为方法中的参数传递。

例子 :

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