如何用 Python 的“范围"计数

How to count by twos with Python#39;s #39;range#39;(如何用 Python 的“范围计数)
本文介绍了如何用 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 的“范围"计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)