当前位置:网站首页>range函数作用
range函数作用
2022-08-05 05:13:00 【长路漫漫 大佬为伴】
参考:range函数作用
range(n)是产生0~n-1的数,range(5)=range(0, 5)
range函数产生的不是一个列表,所以需要依次输出或者使用list函数输出整个列表
>>>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))
[]
边栏推荐
猜你喜欢
随机推荐
Redis - 13、开发规范
redis复制机制
【学习笔记之菜Dog学C】动态内存管理之经典笔试题
Geek卸载工具
OFDM Lecture 16 5 -Discrete Convolution, ISI and ICI on DMT/OFDM Systems
LAB Semaphore Implementation Details
1068 Find More Coins
【cesium】元素高亮显示
Flutter 父子组件如何都能收到点击事件
Detailed Explanation of Redis Sentinel Mode Configuration File
C#关于set()和get()方法的理解及使用
Basic properties of binary tree + oj problem analysis
Transformation 和 Action 常用算子
Flutter Learning 4 - Basic UI Components
仪表板展示 | DataEase看中国:数据呈现中国资本市场
Reverse theory knowledge 4
flex布局青蛙游戏通关攻略
【学生毕业设计】基于web学生信息管理系统网站的设计与实现(13个页面)
Judgment statement _switch and case
MySQL Foundation (1) - Basic Cognition and Operation