Computer Science, asked by Nylucy, 1 month ago

pls tell some list manipulations in python..​

Answers

Answered by Anonymous
1

Answer:

List Methods

Function Description

Extend() Add all elements of a list to the another list

Insert() Insert an item at the defined index

Remove() Removes an item from the list

Pop(). Removes and returns an element at the given index

hope it helps u missing u

Answered by OmsinghRajput07
1

List of manipulations in Python

are as follows:-

Python List append() Add a single element to the end of the list.

Python List clear() Removes all Items from the List.

Python List copy() returns a shallow copy of the list.

Python List count() returns count of the element in the list

Python List extend() ...

Python List index() ...

Python List insert() ...

Python List pop

Similar questions