Open In App

Python-Quizzes | Python String Quiz | Question 8

Like Article
Like
Save
Share
Report

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




my_string = 'geeksforgeeks'
for i in range(len(my_string)): 
    my_string[i].upper() 
print (my_string) 


(A) GEEKSFORGEEKS
(B) geeksforgeeks
(C) Error
(D) No Output


Answer: (B)

Explanation: Changes do not happen in-place, rather it will return a new instance of the string.

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