various loop structure use example in python
Example 1: loops in python
#While Loop:
while ("condition that if true the loop continues"):
#Do whatever you want here
else: #If the while loop reaches the end do the things inside here
#Do whatever you want here
#For Loop:
for x in range("how many times you want to run"):
#Do whatever you want here
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")