KnowledgeBoat Logo

Computer Science

A list of characters is similar to a string type.

Python List Manipulation

1 Like

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.

Answered By

2 Likes


Related Questions