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

        • <bdo id='Wi4vp'></bdo><ul id='Wi4vp'></ul>
        <tfoot id='Wi4vp'></tfoot>
      2. <small id='Wi4vp'></small><noframes id='Wi4vp'>

        如何用 Python 的“范围"计数

        时间:2023-11-08

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

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

                  <bdo id='w3qfm'></bdo><ul id='w3qfm'></ul>
                • <legend id='w3qfm'><style id='w3qfm'><dir id='w3qfm'><q id='w3qfm'></q></dir></style></legend>
                    <tbody id='w3qfm'></tbody>
                  本文介绍了如何用 Python 的“范围"计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  所以想象一下,我想遍历一个从 0 到 100 的循环,但跳过奇数(所以两两").

                  So imagine I want to go over a loop from 0 to 100, but skipping the odd numbers (so going "two by two").

                  for x in range(0,100):
                      if x%2 == 0:
                          print x
                  

                  这解决了它.但是想象一下我想跳两个数字吗?那么三个呢?没有办法吗?

                  This fixes it. But imagine I want to do so jumping two numbers? And what about three? Isn't there a way?

                  推荐答案

                  使用 step 参数(最后一个,可选):

                  Use the step argument (the last, optional):

                  for x in range(0, 100, 2):
                      print(x)
                  

                  请注意,如果您真的想保留奇数,则变为:

                  Note that if you actually want to keep the odd numbers, it becomes:

                  for x in range(1, 100, 2):
                      print(x)
                  

                  范围是一个非常 强大 功能.

                  这篇关于如何用 Python 的“范围"计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在 Python 中使用 Pandas 创建一系列数字 下一篇:创建具有固定数量元素(长度)的范围

                  相关文章

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

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