Which of the following can add a list of elements as separate elements to a list?
Answers
Answered by
0
Answer:
Python add elements to List Examples
append() This function add the element to the end of the list. ...
insert() This function adds an element at the given index of the list. ...
extend() This function append iterable elements to the list. ...
List Concatenation.
Similar questions