python怎么产生5个随机数字?

python生成5个随机数的方法:

1、在循环中使用random.randint()方法生成5个随机数

import random
count = 0
while (count < 5):
    print(random.randint(0,9))
    count = count + 1

输出结果如下:

9
4
7
3
8

random.randint:

语法:

random.randint(a,b)

函数返回数字 N ,N 为 a 到 b 之间的数字(a <= N <= b),包含 a 和 b。

更多Python知识请关注云海天python教程网。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎么产生5个随机数字?