Python产生随机数的方法

2022-05-03 00:00:00 python 方法 随机数

在python里要生成随机数字可以使用python内置的方法randint(),这个方法存在于random模块
Source Code

# 产生1-9之间的随机数
# importing the random module
import random
print(random.randint(0,9))

Output

8

注意,产生的数字是随机的,可能是8或者其它1-9之间的数字. 该方法的语法如下:

random.randint(a,b)

该方法返回一个 [a,b]只见的数字, 数字N的区间为 a <= N <= b, 注意结尾的数字b也包含在内

相关文章