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 for loop
#to print number from 1 to 10
for i in range(1,11):
print(i)
#to print a list
l = [1,2,3,4]
for i in l:
print(i)
r = ["a","b","c","d","e"]
s = [1,2,3,4,5]
#print two list with the help of zip function
for p,q in zip(r,s):
print(p,q)
Example 3: python for loop
for x in range(10):
print(x)
for x in range(10, 20, 2):
print(x)
list = [2, 3, "el"]
for x in list:
print(x)
for _ in range(10):
print("a");
Example 4: for loop
Coroutine doThisCoroutine;
int duration = 5
float waitTime = 1
void Awake(){
DoThisCoroutine = StartCoroutine(DoThis());
}
IEnumerator DoThis(){
while (enabled){
for (int x = 0; x < Duration; x++){
print("Doing This!");
yield return new WaitForSeconds(waitTime)
}
}
}