Answers for "how to get range of list in python"

1

python make list from range

# Basic syntax:
your_list = [*range(start, stop, step)]
# Where * is the argument-unpacking operator

# Example usage:
# Say you want to create a list of even numbers ranging from 10-20
[*range(10, 20, 2)]
--> [10, 12, 14, 16, 18]
Posted by: Guest on April-28-2021
2

get range of items of python list

names = ['Alice', 'Bob', 'Tom', 'Grace']

names[1:3]
# Output:
# ['Bob', 'Tom']
Posted by: Guest on April-08-2020

Code answers related to "how to get range of list in python"

Python Answers by Framework

Browse Popular Code Answers by Language