python随机数模块
创新互联专业提供川西大数据中心服务,为用户提供五星数据中心、电信、双线接入解决方案,用户可自行在线购买川西大数据中心服务,并享受7*24小时金牌售后服务。
如果你对计算机语言python很了解的话,那么你对python中随机数模块是否了解呢?如果你对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]
python随机数模块的相关应用以及代码的介绍。
网页题目:python随机数模块的相关代码示例详解
网站地址:http://www.shufengxianlan.com/qtweb/news13/87263.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联