#705. python-列表-用range编程程序

python-列表-用range编程程序

Background

Description

python-列表-用range编程程序 image

Format

Input

Output

Samples


range(5): range(0, 5)
range(0, 5): range(0, 5)
0
1
2
3
4
[0, 1, 2, 3, 4]
[0, 1, 2, 3, 4]
[]
[0, 5, 10, 15, 20, 25]
[0, 2, 4, 6, 8]
[]

Limitation