python中生成随机整数

编程入门 行业动态 更新时间:2024-10-09 02:29:18

python中生成随机<a href=https://www.elefans.com/category/jswz/34/1771264.html style=整数"/>

python中生成随机整数

python中生成随机整数

Following are the few explanatory illustrations using different python modules, on how to generate random integers? Consider the scenario of generating the random numbers between 0 and 9 (both inclusive).

以下是使用不同的python模块的一些说明性插图,说明如何生成随机整数? 考虑生成介于0和9之间(包括两端)的随机数的方案。

使用randrange (Using randrange )

Syntax:

句法:

    random.randrange(stop)random.randrange(start, stop, step)

Code:

码:

>>> import random
>>> for i in range(10):
...     print(random.randrange(10))
... 
2
2
2
0
8
8
5
6
6
3

使用randint

更多推荐

python中生成随机整数

本文发布于:2024-02-06 04:43:23,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1746403.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:整数   python

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!