怎么用python生成随机数

  1. 给出0到10之间的随机整数:

    import random

    a = random.randint(0,10)

    print(a)

    怎么用python生成随机数?

  2. 给出9到10之间的随机实数:

    import random

    a = random.uniform(9,10)

    print(a)

    怎么用python生成随机数?

  3. 从9、19、29、39、……、99之间,随机选取一个实数:

    import random

    a = random.randrange(9, 100, 10)

    print(a)

    怎么用python生成随机数?

  4. 从列表[5,6,7,8,9]里面,随机选取一个数:

    import random

    a = random.choice([5,6,7,8,9])

    print(a)

    怎么用python生成随机数?

  5. 从一个字符串里面,随机选取一个字符:

    import random

    a = random.choice("从一个字符串里面,随机选取一个字符!")

    print(a)

    怎么用python生成随机数?

  6. 随机打乱列表里面的字符顺序:

    import random

    a = ["p","q","r","s","t","p","q","r","s","t","p","q","r","s","t",]

    random.shuffle(a)

    print(a)

    怎么用python生成随机数?

  7. 从列表里面随机选取9个数字:

    import random

    a = range(3,100,2)

    b = random.sample(a, 9)

    print(b)

怎么用python生成随机数?

https://jingyan.baidu.com/article/c45ad29c038d02051753e283.html

https://blog.csdn.net/autoliuweijie/article/details/51982514

可以从一个int数字或1维array里随机选取内容,并将选取结果放入n维array中返回。
1
说明:
numpy.random.choice(a, size=None, replace=True, p=None)

a : 1-D array-like or int
    If an ndarray, a random sample is generated from its elements. 
    If an int, the random sample is generated as if a was np.arange(n)

size : int or tuple of ints, optional 

replace : boolean, optional
    Whether the sample is with or without replacement

p : 1-D array-like, optional
    The probabilities associated with each entry in a. If not given the sample assumes a uniform distribution over all entries in a.
1
2
3
4
5
6
7
8
9
10
11
示例
>>> np.random.choice(5, 3)
array([0, 3, 4])

>>> np.random.choice(5, 3, p=[0.1, 0, 0.3, 0.6, 0])
array([3, 3, 0])

>>> np.random.choice(5, 3, replace=False)
array([3,1,0])

>>> np.random.choice(5, 3, replace=False, p=[0.1, 0, 0.3, 0.6, 0])
array([2, 3, 0])

>>> aa_milne_arr = ['pooh', 'rabbit', 'piglet', 'Christopher']

>>> np.random.choice(aa_milne_arr, 5, p=[0.5, 0.1, 0.1, 0.3])
array(['pooh', 'pooh', 'pooh', 'Christopher', 'piglet'],

https://blog.csdn.net/autoliuweijie/article/details/51982514

  • 2
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值