Answers for "python for loop within string"

74

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
1

python for loop

for x in range(10):
	print(x)
// output: 1,2,3,...,10
    
for x in range(10, 20, 2):
	print(x)
// output: 10, 12, 14, 16, 18, 20

list = [2, 3, "el"]
for x in list:
	print(x)
// output: 2, 3, "el"

for _ in range(10):
  print("a");
// Do the loop without using index
Posted by: Guest on November-10-2020

Code answers related to "python for loop within string"

Python Answers by Framework

Browse Popular Code Answers by Language