Answers for "range of the list in python"

3

python create list from range

intList = list(range(r1, r2+1))
Posted by: Guest on November-19-2020
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
2

python range in intervals of 10

print("using start, stop, and step arguments in Python range() function")
print("Printing All odd numbers between 1 and 10 using range()")
for i in range(1, 10, 2):
    print(i, end=', ')
Posted by: Guest on February-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language