Answers for "loop in a string python"

9

python for loop

#to print number from 1 to 10
for i in range(1,11):
    print(i)

#to print a list
l = [1,2,3,4]
for i in l:
    print(i)

r = ["a","b","c","d","e"]
s = [1,2,3,4,5]

#print two list with the help of zip function
for p,q in zip(r,s):
    print(p,q)
Posted by: Guest on December-04-2020
3

python iterate over string

word = "test"
for letter in word:
	print(letter)
Posted by: Guest on January-19-2021
7

how to loop through string in python

for i in "Hello":
  print(i)
Posted by: Guest on March-01-2020

Code answers related to "loop in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language