📜  range() python 代码示例

📅  最后修改于: 2022-03-11 14:46:37.888000             🧑  作者: Mango

代码示例6
#can be used a sequence of numbers
x = range(6)
print(x)
#Outputs 0 1 2 3 4 5

for i in range(start,finish ,step) 
#gives range of numbers
#start is optional default is 0
#finish needed specifying when to stop
#step is incremetntaition of jump also optional