Answers for "i for i in range"

2

Range python iterate by 2

for i in range(0,10,2):
  print(i)
Posted by: Guest on May-20-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
1

for i in range(n-1,0,-1):

# Print first 5 numbers using range function
for i in range(5):
    print(i, end=', ')

# Output:
# 0, 1, 2, 3, 4,
Posted by: Guest on December-17-2020
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

for i in range without i

def loop(f,n):
    for i in xrange(n): f()

loop(lambda: <insert expression here>, 5)
Posted by: Guest on February-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language