(d) Extend function is used to add multiple items into the list at any position.
Answers
Answered by
0
Answer:
Python list extend() is an inbuilt function that adds the specified list elements (or any iterable) to the end of the current list. The extend() extends the list by adding all items of the list (passed as an argument) to an end.
Similar questions