Open In App

Python-Quizzes | Miscellaneous | Question 7

Given a string s = “Welcome”, which of the following code is incorrect?
(A) print s[0]
(B) print s.lower()
(C) s[1] = ‘r’
(D) print s.strip()

Answer: (C)
Explanation: strings are immutable in Python
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :