"i for" i in python code example
Example 1: for in python
for i in range(1,10,2): #(initial,final but not included,gap)
print(i);
#output: 1,3,5,7,9
for i in range (1,4): # (initial, final but not included)
print(i);
#output: 1,2,3 note: 4 not included
for i in range (5):
print (i);
#output: 0,1,2,3,4 note: 5 not included
python = ["ml","ai","dl"];
for i in python:
print(i);
#output: ml,ai,dl
for i in range(1,5): #empty loop...if pass not used then it will return error
pass;
Example 2: python loop certain number of times
# To loop n times, use loop over range(n)
for i in range(n):
# Do something
Example 3: for in python
# how to use for in python for (range, lists)
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
if x == "apple":
continue
if x == "banana":
break
print(x)
# fron 2 to 30 by 3 step
for x in range(2, 30, 3):
print(x)
Example 4: how to use iteration in python
>>> a = ['foo', 'bar', 'baz']
>>> for i in a:
... print(i)
...
foo
bar
baz
Example 5: how to use iteration in python
for i = 1 to 10
<loop body>
Example 6: for in pthon
num_list = range(10)
for num in list:
print(num)