Open In App

Python-Quizzes | Python String Quiz | Question 9

Like Article
Like
Save Article
Save
Share
Report issue
Report

Question 9: What is the output of the following program?




my_string = 'geeksforgeeks'
for i in range(len(my_string)): 
    print (my_string, end=" "
    my_string = 'a'


(A) aaaaaaaaaaaa
(B) geeksforgeeks a a a a a a a a a a a a
(C) Error
(D) No Output


Answer: (B)

Explanation: String is modified only after ‘geeksforgeeks’ has been printed once.

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