python loop program code example

Example 1: python loops

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)

Example 2: 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 3: python loop program

digits = [0, 1, 5]

for i in digits:
    print(i)
else:
    print("No items left.")

Tags:

Misc Example