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
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.