Open In App

Python-Quizzes | Python String Quiz | Question 9

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

Article Tags :