Answers for "how to do a for loop python"

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
30

python for loop

for x in (list):
  print(x)
Posted by: Guest on December-10-2019
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

Code answers related to "how to do a for loop python"

Python Answers by Framework

Browse Popular Code Answers by Language