Answers for "how to print range in python"

0

when do we use *range in python

print([*range(20)]) #will give all numbers 1 to 19 in a list
Posted by: Guest on January-15-2021
0

range python start at 1

>>> def range1(start, end):
...     return range(start, end+1)
...
>>> range1(1, 10)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Posted by: Guest on April-07-2020
1

range(n,n) python

# if numbers are same in the range function then,
# the range function outputs empty range
# this is because, there are no integers b/w n and n
for i in range(1,1):
  print("runs")

# prints nothing
Posted by: Guest on June-10-2020

Code answers related to "how to print range in python"

Python Answers by Framework

Browse Popular Code Answers by Language