<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()方法有什么作用?

      What does the random.sample() method in Python do?(Python中的随机性.sample()方法有什么作用?)
    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()方法有什么作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                How to break out of multiple loops?(如何打破多个循环?)
                How to put the legend out of the plot(如何将传说从情节中剔除)
                Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)
              1. <small id='56v8Y'></small><noframes id='56v8Y'>

                  <tbody id='56v8Y'></tbody>
                <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>
                      • <tfoot id='56v8Y'></tfoot>