Computer Science
A string is a mutable sequence of one or more characters.
Python String Manipulation
3 Likes
Answer
False
Reason — Strings are immutable means that the content of the string cannot be changed after it is created.
Answered By
3 Likes
Related Questions
The size of "\\" is 2.
Multiple line string created with the help of triple quotes will include end line character in the length.
Which of the following is not a Python legal string operation?
- 'abc' + 'abc'
- 'abc' *3
- 'abc' + 3
- 'abc'.lower()
In Python string, + and * represent which of the following operations?
- Concatenation, Replication
- Addition, Multiplication
- Neither (i) nor (ii)
- Both (i) and (ii)