python中生成随机整数_在Python中生成0到9之间的随机整数

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 (Using randint)

Syntax:

句法:

    random.randint(a,b)

Code:

码:

>>> import random
>>> for i in range(10):
...     print(random.randint(0,10))
... 
1
6
7
5
8
9
6
2
3
9
>>>

使用机密 (Using secrets)

By using this method, we can generate cryptographically strong random numbers.

通过使用此方法,我们可以生成加密强度高的随机数。

>>> from secrets import randbelow
>>> for i in range(10):
...     print(randbelow(10))
... 
6
5
2
0
7
2
0
1
2
6
>>> 


翻译自: https://www.includehelp.com/python/generate-random-integers-between-0-and-9-in-python.aspx

python中生成随机整数

  • 3
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值