Answers for "python loop program"

73

python loops

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)
Posted by: Guest on January-19-2020
7

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
Posted by: Guest on September-24-2020
0

run a for loop in python

for x in range(6):
  print(x)
Posted by: Guest on August-12-2021
1

how to do a for loop python

print(range(4))
>>> [0,1,2,3]
print(range(1,4))
>>> [1,2,3]
print(range(2,10,2))
>>> [2,4,6,8]
Posted by: Guest on June-15-2020
-1

python loop program

digits = [0, 1, 5]

for i in digits:
    print(i)
else:
    print("No items left.")
Posted by: Guest on May-23-2020

Code answers related to "python loop program"

Python Answers by Framework

Browse Popular Code Answers by Language