Python生成随机数的方法

作者:shangke 时间:2022-10-18 12:57:28 

如果你对在Python生成随机数与random模块中最常用的几个函数的关系与不懂之处,下面的文章就是对Python生成随机数与random模块中最常用的几个函数的关系,希望你会有所收获,以下就是这篇文章的介绍。

random.random()用于生成

用于生成一个指定范围内的随机符点数,两个参数其中一个是上限,一个是下限。如果a > b,则生成随机数


n: a <= n <= b。如果 a <b, 则 b <= n <= a。

print random.uniform(10, 20)
print random.uniform(20, 10)
#----
#18.7356606526
#12.5798298022
random.randint

用于生成一个指定范围内的整数。其中参数a是下限,参数b是上限,Python生成随机数


print random.randint(12, 20) #生成的随机数n: 12 <= n <= 20
print random.randint(20, 20) #结果永远是20
#print random.randint(20, 10) #该语句是错误的。

下限必须小于上限。

random.randrange

从指定范围内,按指定基数递增的集合中 ,这篇文章就是对python生成随机数的应用程序的部分介绍。

随机整数:
>>> import random
>>> random.randint(0,99)
21

随机选取0到100间的偶数:
>>> import random
>>> random.randrange(0, 101, 2)
42

随机浮点数:
>>> import random
>>> random.random()
0.85415370477785668
>>> random.uniform(1, 10)
5.4221167969800881

随机字符:
>>> import random
>>> random.choice('abcdefg&#%^*f')
'd'

多个字符中选取特定数量的字符:
>>> import random
random.sample('abcdefghij',3)
['a', 'd', 'b']

多个字符中选取特定数量的字符组成新字符串:
>>> import random
>>> import string
>>> string.join(random.sample(['a','b','c','d','e','f','g','h','i','j'], 3)).r
eplace(" ","")
'fih'

随机选取字符串:
>>> import random
>>> random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] )
'lemon'

洗牌:
>>> import random
>>> items = [1, 2, 3, 4, 5, 6]
>>> random.shuffle(items)
>>> items
[3, 2, 5, 6, 4, 1]

PS:最后再为大家提供两款相关在线工具供大家参考使用:

在线随机数字/字符串生成工具:
http://tools.jb51.net/aideddesign/suijishu

高强度随机字符密码生成器:
http://tools.jb51.net/password/CreateStrongPassword

标签:生成随机数,Python
0
投稿

猜你喜欢

  • python opencv之SIFT算法示例

    2023-12-27 21:42:33
  • Python函数进阶之迭代器的原理与使用详解

    2023-03-28 09:02:01
  • MySQL8.0.26安装与卸载的完整步骤记录

    2024-01-13 08:56:48
  • 如何判断js脚本加载完成

    2008-11-04 13:53:00
  • 使用Kubernetes集群环境部署MySQL数据库的实战记录

    2024-01-14 15:30:16
  • 详解supervisor使用教程

    2022-02-18 09:12:07
  • python中查看变量内存地址的方法

    2023-11-06 01:38:21
  • CSS双线边框研究

    2009-09-03 12:12:00
  • mysql 5.7.18 免安装版window配置方法

    2024-01-14 15:03:45
  • MySQL优化之如何查找SQL效率低的原因

    2024-01-12 21:03:55
  • Python SSL证书验证问题解决方案

    2022-11-06 13:54:35
  • django+xadmin+djcelery实现后台管理定时任务

    2023-12-15 03:05:52
  • 详解python 爬取12306验证码

    2022-07-17 20:38:20
  • Python中使用Lambda函数的5种用法

    2022-07-13 17:07:35
  • mysql数据表和数据表关联

    2010-12-03 16:00:00
  • django mysql数据库及图片上传接口详解

    2024-01-15 01:45:50
  • Python 限定函数参数的类型及默认值方式

    2022-02-14 22:38:00
  • python通过对字典的排序,对json字段进行排序的实例

    2023-06-15 02:20:40
  • Python3多线程爬虫实例讲解代码

    2021-01-10 21:45:28
  • Python函数中的作用域规则详解

    2023-02-14 04:32:28
  • asp之家 网络编程 m.aspxhome.com