Question: K Using a while-loop, loop over the indices of the string my_str O a. index = 0 while index < len(my_str): print(my_str[index]) index + =

K Using a while-loop, loop over the indices of the string my_str O a. index = 0 while index < len(my_str): print(my_str[index]) index + = 1 O b. index = 0 while index <= len(my_str): print(my_str[index]) index + = 1 O c. index = 1 while index <= len(my_str): print(my_str[index]) index + = 1 O d. for char in my_str: print(char) = "Hello": ~

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!