Answers for "range function"

1

range parameters python

arr_data=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20] 
user = int(input("Enter the product of numbers: ")) 
for i in range(0,20,1): 
    a = arr_data[i] 
    for t in range(0,20,1): 
        b = arr_data[t] 
        if (a*b) == user: 
            print(a,"x",b,"=",user) 
        else: 
            pass
Posted by: Guest on November-11-2020
0

the range() function

>>> for i in range(5):
...     print(i)
...
0
1
2
3
4
Posted by: Guest on November-01-2021
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
4

range

#range function
for a in range(5,-9,-1):#note step can not be 0 or else it will generate error.
    print(a,end=',')
output:
5,4,3,2,1,0,-1,-2,-3,-4,-5,-6,-7,-8,
Posted by: Guest on December-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language