Skip to content
Related Articles
Open in App
Not now

Related Articles

Python-Quizzes | Python String Quiz | Question 8

Improve Article
Save Article
Like Article
  • Last Updated : 18 Sep, 2020
Improve Article
Save Article
Like Article

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

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!