The append() function is used to add a value in a list at any place.
3 Likes
False
Reason — The append() function adds a single item to the end of the list.
append()
Answered By
2 Likes
The command [1,2,3,4,]<[9,1] will give the output as True.
List[a:b] will give the elements between a and b.
index() function will return the index of first matched item from the list.
extend() function is used to add multiple list items in a list.