how to iterate through a string in python code example

Example 1: iterating string in python

"""
Python Program:
 Using range() to iterate over a string in Python
"""
string_to_iterate = "Data Science"
for char_index in range(len(string_to_iterate)):
   print(string_to_iterate[char_index])

Example 2: how to loop through string in python

for i in "Hello":
  print(i)

Example 3: python iterate over string

word = "test"
for letter in word:
	print(letter)

Example 4: iterate through characters in a string python

for c in "string":
    #do something with c

Tags:

Java Example