search
HomeBackend DevelopmentPython TutorialHow to use range in python
How to use range in pythonJun 20, 2019 pm 01:39 PM
range

How to use range in python

Python3 range() function returns an iterable object (type is object), not a list type, so the list will not be printed when printing.

Python3 list() function is an object iterator, which can convert the iterable object returned by range() into a list, and the returned variable type is a list.

Python2 range() function returns a list.

Function syntax

range(stop)
range(start, stop[, step])

Parameter description:

start: Counting starts from start. The default is to start from 0. For example, range(5) is equivalent to range(0, 5);

stop: counts to the end of stop, but does not include stop. For example: range (0, 5) is [0, 1, 2, 3, 4] without 5

step: step size, default is 1. For example: range(0, 5) is equivalent to range(0, 5, 1)

Instance

>>>range(5)
range(0, 5)
>>> for i in range(5):
...     print(i)
... 
0
1
2
3
4
>>> list(range(5))
[0, 1, 2, 3, 4]
>>> list(range(0))
[]
>>>

has two parameters or three parameters (the second construction method) ::

>>>list(range(0, 30, 5))
[0, 5, 10, 15, 20, 25]
>>> list(range(0, 10, 2))
[0, 2, 4, 6, 8]
>>> list(range(0, -10, -1))
[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
>>> list(range(1, 0))
[]
>>>
>>>

The above is the detailed content of How to use range in python. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP返回数组所有值,组成一个数组PHP返回数组所有值,组成一个数组Mar 21, 2024 am 09:06 AM

这篇文章将为大家详细讲解有关PHP返回数组所有值,组成一个数组,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。使用array_values()函数array_values()函数返回一个数组中所有值的数组。它不会保留原始数组的键。$array=["foo"=>"bar","baz"=>"qux"];$values=array_values($array);//$values将是["bar","qux"]使用循环可以使用循环手动获取数组的所有值并将其添加到一个新

Java中Range函数怎么使用Java中Range函数怎么使用Apr 19, 2023 pm 11:49 PM

前言在Java中,Range方法在IntStream和LongStream类中都可用。在IntStream类中,它有助于返回函数参数范围内IntStream的顺序值。在该方法中,startInclusive(inclusive)和endExclusive(exclusive)是与增量步长一起使用的两个参数,如前所述,将包括起始值,并排除结束值。在LongStream的情况下,唯一的区别是添加了LongStream值。Range语法让我们看看Java中range方法的语法。IntStream范围的

深入浅出:透彻理解Go语言range的工作原理深入浅出:透彻理解Go语言range的工作原理Mar 12, 2024 pm 02:18 PM

Go语言是一种简洁而强大的编程语言,在许多方面都具有独特的设计和特点。其中一个让人印象深刻的特性就是range关键字,它被用于迭代数组、切片、映射和通道等数据结构。range的灵活性和便捷性使得遍历复杂数据结构变得简单,但其工作原理却有许多人感到困惑。本文将深入浅出地解释range的工作原理,并通过具体代码示例来帮助读者更好地理解。首先,让我们看一个简单的例

Enormous Cadillac Escalade IQ offers 460 miles of range at up to $170,000 priceEnormous Cadillac Escalade IQ offers 460 miles of range at up to $170,000 priceSep 30, 2024 am 06:15 AM

GM's electric take on the legendary Escalade just got its configurator up, and the price ranges from$130,000 to about $170,000 after incentives. This is more than nearly any other luxury electric vehicle, pickup, or SUV out there, including Tesla's C

Python的range函数如何使用Python的range函数如何使用May 16, 2023 pm 08:26 PM

1、range()函数是什么?range()函数是python的内置函数,它能返回一系列连续添加的整数,能够生成一个列表对象。大多数时常出如今for循环中,在for循环中可做为索引使用。小题练手:for..range练习1:利用for循环和range找出0~100以内所有的偶数,并追加到一个列表。list1=[]foriinrange(0,100,2):list1.append(i)print(list1)2:利用for循环和range找出0~50以内能被3整除的数,并追加到一个列表。list2

php range 不重复随机数怎么实现php range 不重复随机数怎么实现Oct 26, 2022 am 09:22 AM

php range实现不重复随机数的方法:1、“$result = array_slice($numbers,0,$num);”方法;2、“while (list(, $number) = each ($numbers)) {...}”方法;3、“array_slice($rand_array,0,$limit);”方法;4、“range(1,30);”方法。

mysql range分区指的是什么mysql range分区指的是什么May 31, 2023 pm 08:40 PM

1、基于给定区间边界,得到若干个连续区间范围,按照分区键的落点,把数据分配到不同的分区。range分区主要用于日期列的分区。2、range分区通过使用PARTITIONBYRANGE(expr)实现。其中expr可以是某个列值,或一个基于某个列值并返回一个整数值的表达式,如YEAR(date)。实例CREATETABLE`Order`(`id`INTNOTNULLAUTO_INCREMENT,`partition_key`INTNOTNULL,`amt`DECIMAL(5)NULL)PARTIT

快速掌握Go语言range的高效使用技巧快速掌握Go语言range的高效使用技巧Mar 12, 2024 pm 09:18 PM

Go语言是一种开源的编程语言,由Google开发并开源,在近年来越来越受到程序员的青睐。在Go语言中,range是一个强大且方便的迭代器,可用于遍历数组、切片、映射、通道等数据结构。本文将介绍如何快速掌握Go语言中range的高效使用技巧,并提供具体的代码示例来帮助读者更好地理解相关概念。1.遍历数组和切片首先,让我们看一下如何使用range来遍历数组和切

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version