Open In App

Python-Quizzes | Python String Quiz | Question 6

Like Article
Like
Save Article
Save
Share
Report issue
Report

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


Last Updated : 18 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads