how to put a function in a loop in python code example
Example 1: pytho loops
for x in loop:
print(x)
Example 2: different types f python loops
#loopies hehe
for x in range(10): #for loops.
print("For loop")
while True: #while loop.
print("While loop")