KnowledgeBoat Logo
|

Informatics Practices

extend() function is used to add multiple list items in a list.

Python List Manipulation

1 Like

Answer

True

Reason — The extend() method adds one list at the end of another list. In other words, all the items of a list are added at the end of an already created list.

Answered By

1 Like


Related Questions