Python-Quizzes | Python String Quiz | Question 8
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
Please Login to comment...