range function syntax in python code example
Example: 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