码迷,mamicode.com
首页 > 其他好文 > 详细

random模块

时间:2019-06-13 22:19:46      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:小数   顺序   模块   pre   元素   class   int   pytho   整数   

random模块

random模块一般用来生成随机数

  1. random.random()

    随机生成(0,1)之间的小数,不包括0和1

import random

print(random.random())
0.8451293863872781
  1. random.randint()

    随机生成[1,10]之间的整数,包括1和10

print(random.randint(1,10))
2
  1. random.randrange()

    随机生成(1,10)之间的整数,包括1但不包括10

print(random.randrange(1,10))
6
  1. random.uniform()

    随机打印(1,4)之间的小数,不包括1和4

print(random.uniform(1,4))
1.442046447081124
  1. random.choice()

    随机打印列表元素中的元素

lis = [1,2,3,'a','f']
print(random.choice(lis))
f
  1. random.sample()

    随机打印列表元素中的n个元素

print(random.sample(lis,2))
[1, 3]
  1. random.shuffle()

    打乱顺序

lis = [1,2,3,4,6,8,5,7,0]
lis.sort()
print(lis)
random.shuffle(lis)
print(lis)
[0, 1, 2, 3, 4, 5, 6, 7, 8]
[7, 0, 8, 1, 6, 2, 5, 3, 4]

random模块

标签:小数   顺序   模块   pre   元素   class   int   pytho   整数   

原文地址:https://www.cnblogs.com/Hades123/p/11019677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!