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

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

      <legend id='xTFxB'><style id='xTFxB'><dir id='xTFxB'><q id='xTFxB'></q></dir></style></legend>

      <tfoot id='xTFxB'></tfoot>
    1. 使用多个范围语句的 Python 列表初始化

      Python list initialization using multiple range statements(使用多个范围语句的 Python 列表初始化)
        <tbody id='2W5UR'></tbody>
      1. <legend id='2W5UR'><style id='2W5UR'><dir id='2W5UR'><q id='2W5UR'></q></dir></style></legend>
      2. <small id='2W5UR'></small><noframes id='2W5UR'>

          <tfoot id='2W5UR'></tfoot>

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

                本文介绍了使用多个范围语句的 Python 列表初始化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想要一个长列表,例如 [1,2,3,4,5,15,16,17,18,19].为了初始化它,我尝试输入:

                I want one long list, say [1,2,3,4,5,15,16,17,18,19] as an example. To initialize this, I try typing:

                new_list = [range(1,6),range(15,20)]
                

                但是这并没有做我想要的,返回:

                However this doesn't do what I want, returning:

                [[1, 2, 3, 4, 5], [15, 16, 17, 18, 19]]
                

                当我这样做时:

                len(new_list)
                

                它返回 2,而不是我想要的 10 个元素(因为它在列表中创建了 2 个列表).显然,在这个例子中,我可以只输入我想要的内容,但我正在尝试对一些奇怪的迭代列表执行此操作,例如:

                It returns 2, instead of the 10 elements I wanted (since it made 2 lists inside the list). Obviously in this example I could just type out what I want, but I'm trying to do this for some odd iterated lists that go like:

                new_list = [range(101,6284),8001,8003,8010,range(10000,12322)]
                

                需要一维列表而不是列表列表(或任何最好的名称).我猜这真的很容易而且我很想念它,但是经过相当多的搜索后,我没有想出任何有用的东西.有什么想法吗?

                Desiring a 1-D list instead of a list of lists (or whatever it's best called). I'm guessing this is really easy and I'm missing it, but after quite a bit of searching I've come up with nothing too useful. Any ideas?

                推荐答案

                在 Python 2.x 上试试这个:

                Try this for Python 2.x:

                 range(1,6) + range(15,20)
                

                或者如果你使用的是 Python3.x,试试这个:

                Or if you're using Python3.x, try this:

                list(range(1,6)) + list(range(15,20))
                

                用于处理中间元素,对于 Python 2.x:

                For dealing with elements in-between, for Python 2.x:

                range(101,6284) + [8001,8003,8010] + range(10000,12322)
                

                最后是处理中间元素,对于 Python 3.x:

                And finally for dealing with elements in-between, for Python 3.x:

                list(range(101,6284)) + [8001,8003,8010] + list(range(10000,12322))
                

                这里要记住的关键方面是,在 Python 2.x 中 range 返回一个列表,而在 Python 3.x 中它返回一个可迭代对象(因此需要将其显式转换为列表).对于将列表附加在一起,您可以使用 + 运算符.

                The key aspects to remember here is that in Python 2.x range returns a list and in Python 3.x it returns an iterable (so it needs to be explicitly converted to a list). And that for appending together lists, you can use the + operator.

                这篇关于使用多个范围语句的 Python 列表初始化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                相关文档推荐

                What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)

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

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