<tfoot id='GbhO5'></tfoot>
  1. <legend id='GbhO5'><style id='GbhO5'><dir id='GbhO5'><q id='GbhO5'></q></dir></style></legend>

  2. <small id='GbhO5'></small><noframes id='GbhO5'>

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

        <bdo id='GbhO5'></bdo><ul id='GbhO5'></ul>

      创建具有固定数量元素(长度)的范围

      时间:2023-11-08

      • <small id='OZdcx'></small><noframes id='OZdcx'>

            <tbody id='OZdcx'></tbody>
        1. <legend id='OZdcx'><style id='OZdcx'><dir id='OZdcx'><q id='OZdcx'></q></dir></style></legend>
              <bdo id='OZdcx'></bdo><ul id='OZdcx'></ul>
              <i id='OZdcx'><tr id='OZdcx'><dt id='OZdcx'><q id='OZdcx'><span id='OZdcx'><b id='OZdcx'><form id='OZdcx'><ins id='OZdcx'></ins><ul id='OZdcx'></ul><sub id='OZdcx'></sub></form><legend id='OZdcx'></legend><bdo id='OZdcx'><pre id='OZdcx'><center id='OZdcx'></center></pre></bdo></b><th id='OZdcx'></th></span></q></dt></tr></i><div id='OZdcx'><tfoot id='OZdcx'></tfoot><dl id='OZdcx'><fieldset id='OZdcx'></fieldset></dl></div>
            • <tfoot id='OZdcx'></tfoot>
                本文介绍了创建具有固定数量元素(长度)的范围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                在 Python 2.7 中,如何在具有固定数量元素的范围内创建列表,而不是每个元素之间的固定步长?

                In Python 2.7, how can I create a list over a range with a fixed number of elements, rather than a fixed step between each element?

                >>> # Creating a range with a fixed step between elements is easy:
                >>> range(0, 10, 2)
                [0, 2, 4, 6, 8]
                >>> # I'm looking for something like this:
                >>> foo(0, 10, num_of_elements=4)
                [0.0, 2.5, 5, 7.5]
                

                推荐答案

                我为此使用 numpy.

                I use numpy for this.

                >>> import numpy as np
                >>> np.linspace(start=0, stop=7.5, num=4)
                array([ 0. ,  2.5,  5. ,  7.5])
                >>> list(_)
                [0.0, 2.5, 5.0, 7.5]
                

                这篇关于创建具有固定数量元素(长度)的范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:如何用 Python 的“范围"计数 下一篇:Python:将列表与范围列表合并

                相关文章

                <tfoot id='bvyfa'></tfoot>
                1. <legend id='bvyfa'><style id='bvyfa'><dir id='bvyfa'><q id='bvyfa'></q></dir></style></legend>

                    <small id='bvyfa'></small><noframes id='bvyfa'>

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