CBSE Class 11 Informatics Practices Question 80 of 80

Lists in Python — Question 10

Back to all questions
10
Question

Question 10

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

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.