Answers for "if start and end point is same in range function python"

0

if start and end point is same in range function python

# negative range from -10 to -1
# start = -10
# stop = 0
# step = 1
for i in range(2, 2):
    print(i, end=', ')
# Output -10, -9, -8, -7, -6, -5, -4, -3, -2, -1,
Posted by: Guest on March-07-2022

Code answers related to "if start and end point is same in range function python"

Python Answers by Framework

Browse Popular Code Answers by Language