CBSE Class 12 Computer Science Question 49 of 105

Python Revision Tour II — Question 10

Back to all questions
10
Question

Question 10

A list of characters is similar to a string type.

Answer

False

Reason — In Python, a list of characters and a string type are not similar. Strings are immutable sequences of characters, while lists are mutable sequences that can contain various data types. Lists have specific methods and behaviors that differ from strings, such as append(), extend(), pop() etc.