Open In App

Python-Quizzes | Miscellaneous | Question 7

Like Article
Like
Save Article
Save
Share
Report issue
Report

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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads