<bdo id='3D1s8'></bdo><ul id='3D1s8'></ul>
<legend id='3D1s8'><style id='3D1s8'><dir id='3D1s8'><q id='3D1s8'></q></dir></style></legend>
<i id='3D1s8'><tr id='3D1s8'><dt id='3D1s8'><q id='3D1s8'><span id='3D1s8'><b id='3D1s8'><form id='3D1s8'><ins id='3D1s8'></ins><ul id='3D1s8'></ul><sub id='3D1s8'></sub></form><legend id='3D1s8'></legend><bdo id='3D1s8'><pre id='3D1s8'><center id='3D1s8'></center></pre></bdo></b><th id='3D1s8'></th></span></q></dt></tr></i><div id='3D1s8'><tfoot id='3D1s8'></tfoot><dl id='3D1s8'><fieldset id='3D1s8'></fieldset></dl></div>

<small id='3D1s8'></small><noframes id='3D1s8'>

    <tfoot id='3D1s8'></tfoot>

      Python中的随机性.sample()方法有什么作用?

      时间:2024-04-20
    1. <small id='NAqQA'></small><noframes id='NAqQA'>

      <i id='NAqQA'><tr id='NAqQA'><dt id='NAqQA'><q id='NAqQA'><span id='NAqQA'><b id='NAqQA'><form id='NAqQA'><ins id='NAqQA'></ins><ul id='NAqQA'></ul><sub id='NAqQA'></sub></form><legend id='NAqQA'></legend><bdo id='NAqQA'><pre id='NAqQA'><center id='NAqQA'></center></pre></bdo></b><th id='NAqQA'></th></span></q></dt></tr></i><div id='NAqQA'><tfoot id='NAqQA'></tfoot><dl id='NAqQA'><fieldset id='NAqQA'></fieldset></dl></div>

        <tfoot id='NAqQA'></tfoot>

            <tbody id='NAqQA'></tbody>
            <bdo id='NAqQA'></bdo><ul id='NAqQA'></ul>

                <legend id='NAqQA'><style id='NAqQA'><dir id='NAqQA'><q id='NAqQA'></q></dir></style></legend>
                本文介绍了Python中的随机性.sample()方法有什么作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想知道random.sample()方法的用法,它有什么作用?应该在什么时候使用以及一些示例用法。

                推荐答案

                根据documentation:

                随机样本(总体,k)

                返回k长度的唯一元素列表 从种群序列中选择。用于随机抽样,不需要 替换。

                基本上,它从一个序列中挑选k个唯一的随机元素,一个样本:

                >>> import random
                >>> c = list(range(0, 15))
                >>> c
                [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
                >>> random.sample(c, 5)
                [9, 2, 3, 14, 11]
                

                random.sample也可以直接从某个范围运行:

                >>> c = range(0, 15)
                >>> c
                range(0, 15)
                >>> random.sample(c, 5)
                [12, 3, 6, 14, 10]
                

                除序列外,random.sample还可以使用集合:

                >>> c = {1, 2, 4}
                >>> random.sample(c, 2)
                [4, 1]
                

                但是,random.sample不能使用任意迭代器:

                >>> c = [1, 3]
                >>> random.sample(iter(c), 5)
                TypeError: Population must be a sequence or set.  For dicts, use list(d).
                

                这篇关于Python中的随机性.sample()方法有什么作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:使用python将两个音频文件混合在一起 下一篇:如何在超大DF中根据姓名有效地为具有多个条目的个人分配唯一ID

                相关文章

              1. <small id='56v8Y'></small><noframes id='56v8Y'>

                <i id='56v8Y'><tr id='56v8Y'><dt id='56v8Y'><q id='56v8Y'><span id='56v8Y'><b id='56v8Y'><form id='56v8Y'><ins id='56v8Y'></ins><ul id='56v8Y'></ul><sub id='56v8Y'></sub></form><legend id='56v8Y'></legend><bdo id='56v8Y'><pre id='56v8Y'><center id='56v8Y'></center></pre></bdo></b><th id='56v8Y'></th></span></q></dt></tr></i><div id='56v8Y'><tfoot id='56v8Y'></tfoot><dl id='56v8Y'><fieldset id='56v8Y'></fieldset></dl></div>

                • <bdo id='56v8Y'></bdo><ul id='56v8Y'></ul>
                  <legend id='56v8Y'><style id='56v8Y'><dir id='56v8Y'><q id='56v8Y'></q></dir></style></legend>
                1. <tfoot id='56v8Y'></tfoot>