Python-Quizzes | Python String Quiz | Question 6
Question 6: What is the output of the following program?
my_string = "geeksforgeeks" i = "i" while i in my_string: print (i, end = " " ) |
(A) geeksforgeeks
(B) No Output
(C) i i i i i i …
(D) g e e k s f o r g e e k s
Answer: (B)
Explanation: ‘i’ is not present in string ‘geeksforgeeks’
Quiz of this Question
Please comment below if you find anything wrong in the above post
Please Login to comment...