直接看代码
随机整数:
>>> 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/news2/362752.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联