Answers for "for loop in python on string"

3

how to use for loops python

#simple for loop to print numbers 1-99 inclusive
for i in range(1,100):
  print(i)
  
#simple for loop to loop through a list
fruits = ["apple","peach","banana"]
for fruit in fruits:
  print(fruit)
Posted by: Guest on October-25-2020
7

how to loop through string in python

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

Python Answers by Framework

Browse Popular Code Answers by Language