Answers for "loop python examples"

1

how to run for loop in python

for i in range(5):
  print(i)

OUTPUT

0
1
2
3
4
Posted by: Guest on January-23-2022
71

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

Python Answers by Framework

Browse Popular Code Answers by Language